undefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefinedundefined
id,user_id,title,chat,updated_at,created_at,share_id,archived,pinned,meta,folder_id,currentResponseIds,currentId,chat_type,models COLUMN2 COLUMN3 COLUMN4 COLUMN5 COLUMN6 COLUMN7 COLUMN8 COLUMN9 COLUMN10 COLUMN11 COLUMN12 COLUMN13 COLUMN14 COLUMN15 COLUMN16 COLUMN17 COLUMN18 COLUMN19 COLUMN20 COLUMN21 COLUMN22 COLUMN23 COLUMN24 COLUMN25 COLUMN26 COLUMN27 COLUMN28 COLUMN29 COLUMN30 COLUMN31 COLUMN32 COLUMN33 COLUMN34 COLUMN35 COLUMN36 COLUMN37 COLUMN38 COLUMN39 COLUMN40 COLUMN41 COLUMN42 COLUMN43 COLUMN44 COLUMN45 COLUMN46 COLUMN47 COLUMN48 COLUMN49 COLUMN50 COLUMN51 COLUMN52 COLUMN53 COLUMN54 COLUMN55 COLUMN56 COLUMN57 COLUMN58 COLUMN59 COLUMN60 COLUMN61 COLUMN62 COLUMN63 COLUMN64 COLUMN65 COLUMN66 COLUMN67 COLUMN68 COLUMN69 COLUMN70 COLUMN71 COLUMN72 COLUMN73 COLUMN74 COLUMN75 COLUMN76 COLUMN77 COLUMN78 COLUMN79 COLUMN80 COLUMN81
d09b669c-7e9a-47a0-a742-8662f46b0044,f2503007-32f7-4ca8-9040-1253f026e33c,React Domain Registration App,"45a2c2ba-9586-4835-9f31-53c159374083 user change the color to black with white text qwen3-max-preview artifacts web_dev false null web_dev false phase null null null 805b50dd-13ae-467b-9bbb-9ead0c19e5a0 108791a6-f36d-4f4c-8579-fa07d5075c3a Pasted_Text_1757271622887.txt text/plain file default 41353 https://cdn.qwenlm.ai/f2503007-32f7-4ca8-9040-1253f026e33c/108791a6-f36d-4f4c-8579-fa07d5075c3a_Pasted_Text_1757271622887.txt?key=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyZXNvdXJjZV91c2VyX2lkIjoiZjI1MDMwMDctMzJmNy00Y2E4LTkwNDAtMTI1M2YwMjZlMzNjIiwicmVzb3VyY2VfaWQiOiIxMDg3OTFhNi1mMzZkLTRmNGMtODU3OS1mYTA3ZDUwNzVjM2EiLCJyZXNvdXJjZV9jaGF0X2lkIjpudWxsfQ.8bo2wK1WGHMsEKmEL4ZF4hxhkF3n-SXiP8E1rdbOqdM 1757271635032 Pasted_Text_1757271622887.txt null 108791a6-f36d-4f4c-8579-fa07d5075c3a f2503007-32f7-4ca8-9040-1253f026e33c Pasted_Text_1757271622887.txt 41353 text/plain 1757271635032 0 uploaded success 8ead5ced-7b20-49a0-aeaa-533b8f4ac13a file full 98a5faa5-87fb-4fc4-b2e5-4ebf13535d03 1757271673 assistant null artifacts web_dev qwen3-max-preview Qwen3-Max-Preview 0 805b50dd-13ae-467b-9bbb-9ead0c19e5a0 45a2c2ba-9586-4835-9f31-53c159374083 1d41941a-9d1f-41fe-905f-0662b54ac16a false phase null ```jsx                                                
import React, { useState, useEffect } from 'react';                                                                                                                                                                
                                                                                                                                                               
const App = () => {                                                                                                                                                                
const [searchTerm, setSearchTerm] = useState('');                                                                                                                                                                
const [searchResults, setSearchResults] = useState([]);                                                                                                                                                                
const [isSearching, setIsSearching] = useState(false);                                                                                                                                                                
const [activeSection, setActiveSection] = useState('home');                                                                                                                                                                
const [cartItems, setCartItems] = useState([]);                                                                                                                                                                
const [showCart, setShowCart] = useState(false);                                                                                                                                                                
                                                                                                                                                               
// Mock domain search function                                                                                                                                                                
const searchDomains = async (term) => {                                                                                                                                                                
setIsSearching(true);                                                                                                                                                                
// Simulate API call                                                                                                                                                                
await new Promise(resolve => setTimeout(resolve, 1500));                                                                                                                                                                
const tlds = ['.com', '.io', '.ai', '.app', '.tech', '.info', '.xyz', '.se', '.nu'];                                                                                                                                                                
const results = tlds.map(tld => ({                                                                                                                                                                
name: term + tld,                                                                                                                                                                
available: Math.random() > 0.3,                                                                                                                                                                
price: (Math.random() * 20 + 5).toFixed(2),                                                                                                                                                                
tld: tld                                                                                                                                                                
}));                                                                                                                                                                
setSearchResults(results);                                                                                                                                                                
setIsSearching(false);                                                                                                                                                                
};                                                                                                                                                                
                                                                                                                                                               
const addToCart = (domain) => {                                                                                                                                                                
setCartItems([...cartItems, { ...domain, privacy: true, years: 1 }]);                                                                                                                                                                
};                                                                                                                                                                
                                                                                                                                                               
const removeFromCart = (index) => {                                                                                                                                                                
setCartItems(cartItems.filter((_, i) => i !== index));                                                                                                                                                                
};                                                                                                                                                                
                                                                                                                                                               
const togglePrivacy = (index) => {                                                                                                                                                                
const newCart = [...cartItems];                                                                                                                                                                
newCart[index].privacy = !newCart[index].privacy;                                                                                                                                                                
setCartItems(newCart);                                                                                                                                                                
};                                                                                                                                                                
                                                                                                                                                               
const updateYears = (index, years) => {                                                                                                                                                                
const newCart = [...cartItems];                                                                                                                                                                
newCart[index].years = years;                                                                                                                                                                
setCartItems(newCart);                                                                                                                                                                
};                                                                                                                                                                
                                                                                                                                                               
const getTotal = () => {                                                                                                                                                                
return cartItems.reduce((total, item) => {                                                                                                                                                                
const basePrice = parseFloat(item.price);                                                                                                                                                                
const privacyCost = item.privacy ? 2.99 : 0;                                                                                                                                                                
return total + ((basePrice + privacyCost) * item.years);                                                                                                                                                                
}, 0).toFixed(2);                                                                                                                                                                
};                                                                                                                                                                
                                                                                                                                                               
// Mock data for services                                                                                                                                                                
const services = [                                                                                                                                                                
{                                                                                                                                                                
icon: ""🌐"",                                                                                                                                                                
title: ""Domain Registration"",                                                                                                                                                                
description: ""All major TLDs (.com, .io, .ai, .app, .se, .nu, .tech, .info) and yes — if it existed, we'd register .taco"",                                                                                                                                                                
features: [""Real-time availability"", ""Bulk search"", ""One-click registration"", ""WHOIS privacy toggle""]                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
icon: ""💡"",                                                                                                                                                                
title: ""Domain Brainstorming"",                                                                                                                                                                
description: ""Spicy suggestions guaranteed to find the perfect name for your brand"",                                                                                                                                                                
features: [""AI-powered suggestions"", ""Brand alignment scoring"", ""Competitor analysis"", ""Trademark checks""]                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
icon: ""🛒"",                                                                                                                                                                
title: ""Brandable Marketplace"",                                                                                                                                                                
description: ""Buy and sell premium domains in our secure marketplace"",                                                                                                                                                                
features: [""Auction system"", ""Escrow service"", ""Premium domains"", ""Expiring domains""]                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
icon: ""🚀"",                                                                                                                                                                
title: ""Web Hosting + Guac"",                                                                                                                                                                
description: ""Fast, reliable hosting with extra guac (optional but recommended)"",                                                                                                                                                                
features: [""SSD storage"", ""Free SSL"", ""1-click installs"", ""24/7 support""]                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
icon: ""🔒"",                                                                                                                                                                
title: ""SSL Certificates"",                                                                                                                                                                
description: ""Because even tacos need security"",                                                                                                                                                                
features: [""Free Let's Encrypt"", ""Auto-install & renew"", ""Premium OV/EV options"", ""One-click HTTPS""]                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
icon: ""📊"",                                                                                                                                                                
title: ""Analytics & Shortlinks"",                                                                                                                                                                
description: ""Create branded short URLs with click analytics"",                                                                                                                                                                
features: [""go.taco.domains/yourlink"", ""Vanity subdomains"", ""Click tracking"", ""UTM parameters""]                                                                                                                                                                
}                                                                                                                                                                
];                                                                                                                                                                
                                                                                                                                                               
// Mock data for testimonials                                                                                                                                                                
const testimonials = [                                                                                                                                                                
{                                                                                                                                                                
name: ""Maria Garcia"",                                                                                                                                                                
company: ""Salsa Startup"",                                                                                                                                                                
text: ""Taco Domains made setting up our website as easy as ordering tacos. The interface is so intuitive, even my abuela could use it!"",                                                                                                                                                                
rating: 5                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
name: ""Jamal Chen"",                                                                                                                                                                
company: ""Tech Burrito"",                                                                                                                                                                
text: ""Switched from GoDaddy and never looked back. The 'Guac Guard' security bundle is worth every penny. Plus, who doesn't love taco-themed error messages?"",                                                                                                                                                                
rating: 5                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
name: ""Sophie Dubois"",                                                                                                                                                                
company: ""Parisian Tacos"",                                                                                                                                                                
text: ""The domain brainstorming tool suggested 'parisiantacos.com' - perfect! Customer support responded faster than I could say 'extra salsa'."",                                                                                                                                                                
rating: 5                                                                                                                                                                
}                                                                                                                                                                
];                                                                                                                                                                
                                                                                                                                                               
// Mock data for pricing                                                                                                                                                                
const pricingTiers = [                                                                                                                                                                
{                                                                                                                                                                
name: ""Single Taco"",                                                                                                                                                                
price: ""$9.99"",                                                                                                                                                                
period: ""/year"",                                                                                                                                                                
description: ""Perfect for personal projects"",                                                                                                                                                                
features: [                                                                                                                                                                
""1 domain registration"",                                                                                                                                                                
""Basic DNS management"",                                                                                                                                                                
""Free SSL certificate"",                                                                                                                                                                
""Email forwarding"",                                                                                                                                                                
""Standard support""                                                                                                                                                                
],                                                                                                                                                                
popular: false                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
name: ""Taco Combo"",                                                                                                                                                                
price: ""$24.99"",                                                                                                                                                                
period: ""/year"",                                                                                                                                                                
description: ""Best value for small businesses"",                                                                                                                                                                
features: [                                                                                                                                                                
""5 domain registrations"",                                                                                                                                                                
""Advanced DNS management"",                                                                                                                                                                
""Free SSL certificates"",                                                                                                                                                                
""Email forwarding + MX setup"",                                                                                                                                                                
""Priority support"",                                                                                                                                                                
""Basic analytics""                                                                                                                                                                
],                                                                                                                                                                
popular: true                                                                                                                                                                
},                                                                                                                                                                
{                                                                                                                                                                
name: ""Taco Feast"",                                                                                                                                                                
price: ""$49.99"",                                                                                                                                                                
period: ""/year"",                                                                                                                                                                
description: ""For agencies and enterprises"",                                                                                                                                                                
features: [                                                                                                                                                                
""Unlimited domains"",                                                                                                                                                                
""Premium DNS with Anycast"",                                                                                                                                                                
""SSL certificates (all types)"",                                                                                                                                                                
""Advanced email routing"",                                                                                                                                                                
""24/7 priority support"",                                                                                                                                                                
""Advanced analytics"",                                                                                                                                                                
""API access"",                                                                                                                                                                
""Team collaboration""                                                                                                                                                                
],                                                                                                                                                                
popular: false                                                                                                                                                                
}                                                                                                                                                                
];                                                                                                                                                                
                                                                                                                                                               
return (                                                                                                                                                                
                                                                                                                                                               
{/* Navigation */}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
🌮
                                                                                                                                                               
Taco Domains
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
onClick={() => setActiveSection('home')}                                                                                                                                                                
className={`font-medium transition-colors ${activeSection === 'home' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
>                                                                                                                                                                
Home                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
onClick={() => setActiveSection('services')}                                                                                                                                                                
className={`font-medium transition-colors ${activeSection === 'services' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
>                                                                                                                                                                
Services                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
onClick={() => setActiveSection('pricing')}                                                                                                                                                                
className={`font-medium transition-colors ${activeSection === 'pricing' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
>                                                                                                                                                                
Pricing                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
onClick={() => setActiveSection('marketplace')}                                                                                                                                                                
className={`font-medium transition-colors ${activeSection === 'marketplace' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
>                                                                                                                                                                
Marketplace                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
onClick={() => setActiveSection('support')}                                                                                                                                                                
className={`font-medium transition-colors ${activeSection === 'support' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
>                                                                                                                                                                
Support                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
onClick={() => setShowCart(!showCart)}                                                                                                                                                                
className=""relative bg-white text-black px-4 py-2 rounded-lg hover:bg-gray-200 transition-colors""                                                                                                                                                                
>                                                                                                                                                                
Cart 🛒                                                                                                                                                                
{cartItems.length > 0 && (                                                                                                                                                                
                                                                                                                                                               
{cartItems.length}                                                                                                                                                                
                                                                                                                                                               
)}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
Login                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
{/* Shopping Cart Sidebar */}                                                                                                                                                                
{showCart && (                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               

Your Cart 🛒

                                                                                                                                                               
                                                                                                                                                               
onClick={() => setShowCart(false)}                                                                                                                                                                
className=""text-2xl hover:text-gray-400""                                                                                                                                                                
>                                                                                                                                                                
×                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
{cartItems.length === 0 ? (                                                                                                                                                                

Your cart is empty. Add some domains!

                                                                                                                                                               
) : (                                                                                                                                                                
<>                                                                                                                                                                
{cartItems.map((item, index) => (                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               

{item.name}

                                                                                                                                                               
                                                                                                                                                               
onClick={() => removeFromCart(index)}                                                                                                                                                                
className=""text-red-400 hover:text-red-300""                                                                                                                                                                
>                                                                                                                                                                
Remove                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
Years:                                                                                                                                                                
                                                                                                                                                               
value={item.years}                                                                                                                                                                
onChange={(e) => updateYears(index, parseInt(e.target.value))}                                                                                                                                                                
className=""border border-gray-600 rounded px-2 py-1 text-sm bg-black text-white""                                                                                                                                                                
>                                                                                                                                                                
{[1,2,3,4,5].map(year => (                                                                                                                                                                
                                                                                                                                                               
))}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
type=""checkbox""                                                                                                                                                                
checked={item.privacy}                                                                                                                                                                
onChange={() => togglePrivacy(index)}                                                                                                                                                                
className=""mr-2""                                                                                                                                                                
/>                                                                                                                                                                
WHOIS Privacy ($2.99/yr)                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
${(parseFloat(item.price) + (item.privacy ? 2.99 : 0)) * item.years}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
))}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
Total:                                                                                                                                                                
${getTotal()}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
Checkout 🌮                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
)}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
)}                                                                                                                                                                
                                                                                                                                                               
{/* Hero Section */}                                                                                                                                                                
{activeSection === 'home' && (                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
🌮
                                                                                                                                                               

                                                                                                                                                               
WELCOME TO TACO DOMAINS 🌮                                                                                                                                                                
                                                                                                                                                               

                                                                                                                                                               
Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                               
                                                                                                                                                               

                                                                                                                                                               
Get Your Domain. No Salsa Required. (But Highly Recommended.)                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
type=""text""                                                                                                                                                                
placeholder=""Enter your dream domain name...""                                                                                                                                                                
value={searchTerm}                                                                                                                                                                
onChange={(e) => setSearchTerm(e.target.value)}                                                                                                                                                                
className=""w-full px-6 py-4 text-lg border-2 border-gray-600 rounded-lg focus:outline-none focus:ring-4 focus:ring-gray-700 bg-black text-white""                                                                                                                                                                
/>                                                                                                                                                                
                                                                                                                                                               
.com .io .ai .app .tech                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
onClick={() => searchDomains(searchTerm)}                                                                                                                                                                
disabled={!searchTerm isSearching}                                                                                                                                                            
className=""bg-white text-black font-bold py-4 px-8 rounded-lg text-lg transition-colors flex items-center justify-center hover:bg-gray-200 disabled:bg-gray-700 disabled:text-gray-500""                                                                                                                                                                
>                                                                                                                                                                
{isSearching ? (                                                                                                                                                                
                                                                                                                                                               
) : (                                                                                                                                                                
🔍                                                                                                                                                                
)}                                                                                                                                                                
{isSearching ? 'Searching...' : 'Search Domain'}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
onClick={() => setActiveSection('how-it-works')}                                                                                                                                                                
className=""mt-4 text-white hover:text-gray-300 font-medium transition-colors""                                                                                                                                                                
>                                                                                                                                                                
📖 How It Works (It's Easy, Promise)                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
{/* Search Results */}                                                                                                                                                                
{searchResults.length > 0 && (                                                                                                                                                                
                                                                                                                                                               

Search Results for ""{searchTerm}""

                                                                                                                                                               
                                                                                                                                                               
{searchResults.map((domain, index) => (                                                                                                                                                                
                                                                                                                                                               
domain.available                                                                                                                                                                
? 'border-green-700 bg-green-900 bg-opacity-20'                                                                                                                                                                
: 'border-red-700 bg-red-900 bg-opacity-20'                                                                                                                                                                
} flex justify-between items-center`}>                                                                                                                                                                
                                                                                                                                                               
{domain.name}
                                                                                                                                                               
                                                                                                                                                               
domain.available ? 'text-green-400' : 'text-red-400'                                                                                                                                                                
}`}>                                                                                                                                                                
{domain.available ? 'Available!' : 'Taken 😢'}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
{domain.available && (                                                                                                                                                                
${domain.price}/yr
                                                                                                                                                               
)}                                                                                                                                                                
{domain.available ? (                                                                                                                                                                
                                                                                                                                                               
onClick={() => addToCart(domain)}                                                                                                                                                                
className=""bg-white text-black px-6 py-2 rounded-lg transition-colors hover:bg-gray-200""                                                                                                                                                                
>                                                                                                                                                                
Add to Cart 🛒                                                                                                                                                                
                                                                                                                                                               
) : (                                                                                                                                                                
                                                                                                                                                               
Register                                                                                                                                                                
                                                                                                                                                               
)}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
))}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
)}                                                                                                                                                                
                                                                                                                                                               
{/* Taglines */}                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               

""Don't be shellfish — claim your domain today!""

                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               

""Hot domains. Fresh ideas. Zero crumbs.""

                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               

""Your website deserves more than a boring burrito.""

                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
)}                                                                                                                                                                
                                                                                                                                                               
{/* Services Section */}                                                                                                                                                                
{activeSection === 'services' && (                                                                                                                                                                
                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               

                                                                                                                                                               
Our Delicious Services 🌮                                                                                                                                                                
                                                                                                                                                               

                                                                                                                                                               
We've packed all the essential domain services with extra guac and a side of salsa.                                                                                                                                                                

                                                                                                                                                               
                                                                                                                                                               
                                                                                                                                                               
{services.map((service, index) => (                                                                                                                                                                
                                                                                                                                                               
{service.icon}
                                                                                                                                                               

{service.title}

                                                                                                                                                               

{service.description}

                                                                                                                                                               
                                                                                                                                                               
{service.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Learn More                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* How It Works Section */}                                                                                                                                                                
    {activeSection === 'how-it-works' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    How It Works 📖                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    It's as easy as ordering your favorite taco combo!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    1
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Search Your Perfect Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Type in your dream domain name and we'll show you what's available across all major TLDs.                                                                                                                                                                
    Our AI-powered suggestions will help if you're stuck!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    2
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Add to Cart & Customize

                                                                                                                                                                   

                                                                                                                                                                   
    Choose how many years you want to register for, add WHOIS privacy, and select any additional services like hosting or SSL certificates.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    3
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Checkout & Celebrate

                                                                                                                                                                   

                                                                                                                                                                   
    Complete your purchase and you're done! Your domain is registered and ready to use.                                                                                                                                                                
    We'll even send you a virtual taco to celebrate 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className=""bg-white text-black px-8 py-4 rounded-lg text-xl font-bold transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Start Your Domain Search Now! 🔍                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Pricing Section */}                                                                                                                                                                
    {activeSection === 'pricing' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Pricing That's Not Half-Baked 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Transparent pricing with no hidden fees. Just delicious domain services at fair prices.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {pricingTiers.map((tier, index) => (                                                                                                                                                                
                                                                                                                                                                   
    tier.popular ? 'border-2 border-orange-500 transform scale-105' : 'border border-gray-700'                                                                                                                                                                
    } transition-transform hover:scale-105`}>                                                                                                                                                                
    {tier.popular && (                                                                                                                                                                
                                                                                                                                                                   
    MOST POPULAR                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                

    {tier.name}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.price}                                                                                                                                                                
    {tier.period}                                                                                                                                                                
                                                                                                                                                                   

    {tier.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    tier.popular                                                                                                                                                                
    ? 'bg-white text-black hover:bg-gray-200'                                                                                                                                                                
    : 'bg-gray-800 hover:bg-gray-700 text-white border border-gray-600'                                                                                                                                                                
    }`}>                                                                                                                                                                
    Get Started                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Special! 🌮

                                                                                                                                                                   

    Get 20% off any annual plan with code TACOTUESDAY

                                                                                                                                                                   
                                                                                                                                                                   
    Claim Your Discount                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Marketplace Section */}                                                                                                                                                                
    {activeSection === 'marketplace' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Brandable Domain Marketplace 🛒                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Buy and sell premium domains in our secure marketplace. Auction system for expiring or premium domains with escrow service.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {[                                                                                                                                                                
    { name: ""startup.taco"", price: ""$2,499"", type: ""Premium"", category: ""Tech"" },                                                                                                                                                                
    { name: ""designsalsa.com"", price: ""$1,299"", type: ""Auction"", category: ""Design"" },                                                                                                                                                                
    { name: ""ai.nachos"", price: ""$5,999"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""cloudguac.io"", price: ""$899"", type: ""Fixed"", category: ""Cloud"" },                                                                                                                                                                
    { name: ""tacobot.ai"", price: ""$3,499"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""web3.taco"", price: ""$7,999"", type: ""Premium"", category: ""Blockchain"" }                                                                                                                                                                
    ].map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {domain.name}

                                                                                                                                                                   
                                                                                                                                                                   
    domain.type === ""Premium"" ? ""bg-red-900 text-red-200"" :                                                                                                                                                                
    domain.type === ""Auction"" ? ""bg-yellow-900 text-yellow-200"" :                                                                                                                                                                
    ""bg-green-900 text-green-200""                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.type}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.price}                                                                                                                                                                
    Category: {domain.category}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Brandable                                                                                                                                                                
    Memorable                                                                                                                                                                
    Short                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.type === ""Auction"" ? ""Place Bid"" : ""Buy Now""}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    Sell Your Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Have a domain you want to sell? List it on our marketplace and reach thousands of potential buyers.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Your domain name""                                                                                                                                                                
    className=""px-4 py-3 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Asking Price""                                                                                                                                                                
    className=""px-4 py-3 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Category""                                                                                                                                                                
    className=""px-4 py-3 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    List Your Domain 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Support Section */}                                                                                                                                                                
    {activeSection === 'support' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Support & Education 📚                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Don't worry, we've got your back! From AI chatbots to live chat, we're here to help.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    💬 Live Support

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    AI Chatbot - Available 24/7                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Live Chat - Mon-Fri 9AM-9PM EST                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Email Support - response within 24 hours                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Phone Support - for premium customers                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Start Chat Now                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tips

                                                                                                                                                                   

    Educational guides and videos to help you master your domains

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    How to point your domain to Shopify

                                                                                                                                                                   

    5 min video tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Setting up email forwarding

                                                                                                                                                                   

    3 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    DNSSEC setup for enhanced security

                                                                                                                                                                   

    8 min advanced tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Creating branded shortlinks

                                                                                                                                                                   

    4 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    View All Tutorials                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Tech Talks 🌮

                                                                                                                                                                   

    Join our weekly live sessions every Tuesday at 2PM EST

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Register for Next Session                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Watch Past Recordings                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    What Our Customers Say

                                                                                                                                                                   
                                                                                                                                                                   
    {testimonials.map((testimonial, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {[...Array(testimonial.rating)].map((_, i) => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   

    ""{testimonial.text}""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name.charAt(0)}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name}
                                                                                                                                                                   
    {testimonial.company}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Footer */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    𝕏                                                                                                                                                                
    𝑓                                                                                                                                                                
    𝕀                                                                                                                                                                
    𝓛                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Services

                                                                                                                                                                   
                                                                                                                                                                   
  • Domain Registration
  •                                                                                                                                                                
  • Domain Transfer
  •                                                                                                                                                                
  • Web Hosting
  •                                                                                                                                                                
  • SSL Certificates
  •                                                                                                                                                                
  • Email Forwarding
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Support

                                                                                                                                                                   
                                                                                                                                                                   
  • Help Center
  •                                                                                                                                                                
  • Taco Tips
  •                                                                                                                                                                
  • Community Forum
  •                                                                                                                                                                
  • Contact Us
  •                                                                                                                                                                
  • Status Page
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Company

                                                                                                                                                                   
                                                                                                                                                                   
  • About Us
  •                                                                                                                                                                
  • Careers
  •                                                                                                                                                                
  • Blog
  •                                                                                                                                                                
  • Press
  •                                                                                                                                                                
  • Partners
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    © 2023 Taco Domains. All rights reserved. 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    Terms                                                                                                                                                                
    Privacy                                                                                                                                                                
    Cookies                                                                                                                                                                
    Sitemap                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Don't be shellfish — tell a friend about Taco Domains! 🌮

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    );                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    export default App;                                                                                                                                                                
    ``` answer finished null assistant 10676 9382 20058 512 false false null web_dev 1757271888.46502 null null null true null 1757271673 1d41941a-9d1f-41fe-905f-0662b54ac16a user please make it for mobile use qwen3-max-preview artifacts web_dev false null web_dev false phase null 805b50dd-13ae-467b-9bbb-9ead0c19e5a0 null f2fca732-f869-4fcd-aff1-683a28baf4ef 1757355266 assistant null artifacts web_dev qwen3-max-preview Qwen3-Max-Preview 0 f2fca732-f869-4fcd-aff1-683a28baf4ef 1d41941a-9d1f-41fe-905f-0662b54ac16a eb46feb5-1de0-450a-8996-6c4467622c0a false phase null ```jsx                                                        
    import React, { useState, useEffect } from 'react';                                                                                                                                                                
                                                                                                                                                                   
    const App = () => {                                                                                                                                                                
    const [searchTerm, setSearchTerm] = useState('');                                                                                                                                                                
    const [searchResults, setSearchResults] = useState([]);                                                                                                                                                                
    const [isSearching, setIsSearching] = useState(false);                                                                                                                                                                
    const [activeSection, setActiveSection] = useState('home');                                                                                                                                                                
    const [cartItems, setCartItems] = useState([]);                                                                                                                                                                
    const [showCart, setShowCart] = useState(false);                                                                                                                                                                
    const [mobileMenuOpen, setMobileMenuOpen] = useState(false);                                                                                                                                                                
                                                                                                                                                                   
    // Mock domain search function                                                                                                                                                                
    const searchDomains = async (term) => {                                                                                                                                                                
    setIsSearching(true);                                                                                                                                                                
    // Simulate API call                                                                                                                                                                
    await new Promise(resolve => setTimeout(resolve, 1500));                                                                                                                                                                
    const tlds = ['.com', '.io', '.ai', '.app', '.tech', '.info', '.xyz', '.se', '.nu'];                                                                                                                                                                
    const results = tlds.map(tld => ({                                                                                                                                                                
    name: term + tld,                                                                                                                                                                
    available: Math.random() > 0.3,                                                                                                                                                                
    price: (Math.random() * 20 + 5).toFixed(2),                                                                                                                                                                
    tld: tld                                                                                                                                                                
    }));                                                                                                                                                                
    setSearchResults(results);                                                                                                                                                                
    setIsSearching(false);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const addToCart = (domain) => {                                                                                                                                                                
    setCartItems([...cartItems, { ...domain, privacy: true, years: 1 }]);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const removeFromCart = (index) => {                                                                                                                                                                
    setCartItems(cartItems.filter((_, i) => i !== index));                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const togglePrivacy = (index) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].privacy = !newCart[index].privacy;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const updateYears = (index, years) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].years = years;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const getTotal = () => {                                                                                                                                                                
    return cartItems.reduce((total, item) => {                                                                                                                                                                
    const basePrice = parseFloat(item.price);                                                                                                                                                                
    const privacyCost = item.privacy ? 2.99 : 0;                                                                                                                                                                
    return total + ((basePrice + privacyCost) * item.years);                                                                                                                                                                
    }, 0).toFixed(2);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for services                                                                                                                                                                
    const services = [                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🌐"",                                                                                                                                                                
    title: ""Domain Registration"",                                                                                                                                                                
    description: ""All major TLDs (.com, .io, .ai, .app, .se, .nu, .tech, .info) and yes — if it existed, we'd register .taco"",                                                                                                                                                                
    features: [""Real-time availability"", ""Bulk search"", ""One-click registration"", ""WHOIS privacy toggle""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""💡"",                                                                                                                                                                
    title: ""Domain Brainstorming"",                                                                                                                                                                
    description: ""Spicy suggestions guaranteed to find the perfect name for your brand"",                                                                                                                                                                
    features: [""AI-powered suggestions"", ""Brand alignment scoring"", ""Competitor analysis"", ""Trademark checks""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🛒"",                                                                                                                                                                
    title: ""Brandable Marketplace"",                                                                                                                                                                
    description: ""Buy and sell premium domains in our secure marketplace"",                                                                                                                                                                
    features: [""Auction system"", ""Escrow service"", ""Premium domains"", ""Expiring domains""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🚀"",                                                                                                                                                                
    title: ""Web Hosting + Guac"",                                                                                                                                                                
    description: ""Fast, reliable hosting with extra guac (optional but recommended)"",                                                                                                                                                                
    features: [""SSD storage"", ""Free SSL"", ""1-click installs"", ""24/7 support""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🔒"",                                                                                                                                                                
    title: ""SSL Certificates"",                                                                                                                                                                
    description: ""Because even tacos need security"",                                                                                                                                                                
    features: [""Free Let's Encrypt"", ""Auto-install & renew"", ""Premium OV/EV options"", ""One-click HTTPS""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""📊"",                                                                                                                                                                
    title: ""Analytics & Shortlinks"",                                                                                                                                                                
    description: ""Create branded short URLs with click analytics"",                                                                                                                                                                
    features: [""go.taco.domains/yourlink"", ""Vanity subdomains"", ""Click tracking"", ""UTM parameters""]                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for testimonials                                                                                                                                                                
    const testimonials = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Maria Garcia"",                                                                                                                                                                
    company: ""Salsa Startup"",                                                                                                                                                                
    text: ""Taco Domains made setting up our website as easy as ordering tacos. The interface is so intuitive, even my abuela could use it!"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Jamal Chen"",                                                                                                                                                                
    company: ""Tech Burrito"",                                                                                                                                                                
    text: ""Switched from GoDaddy and never looked back. The 'Guac Guard' security bundle is worth every penny. Plus, who doesn't love taco-themed error messages?"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Sophie Dubois"",                                                                                                                                                                
    company: ""Parisian Tacos"",                                                                                                                                                                
    text: ""The domain brainstorming tool suggested 'parisiantacos.com' - perfect! Customer support responded faster than I could say 'extra salsa'."",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for pricing                                                                                                                                                                
    const pricingTiers = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Single Taco"",                                                                                                                                                                
    price: ""$9.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Perfect for personal projects"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""1 domain registration"",                                                                                                                                                                
    ""Basic DNS management"",                                                                                                                                                                
    ""Free SSL certificate"",                                                                                                                                                                
    ""Email forwarding"",                                                                                                                                                                
    ""Standard support""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Combo"",                                                                                                                                                                
    price: ""$24.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Best value for small businesses"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""5 domain registrations"",                                                                                                                                                                
    ""Advanced DNS management"",                                                                                                                                                                
    ""Free SSL certificates"",                                                                                                                                                                
    ""Email forwarding + MX setup"",                                                                                                                                                                
    ""Priority support"",                                                                                                                                                                
    ""Basic analytics""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: true                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Feast"",                                                                                                                                                                
    price: ""$49.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""For agencies and enterprises"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""Unlimited domains"",                                                                                                                                                                
    ""Premium DNS with Anycast"",                                                                                                                                                                
    ""SSL certificates (all types)"",                                                                                                                                                                
    ""Advanced email routing"",                                                                                                                                                                
    ""24/7 priority support"",                                                                                                                                                                
    ""Advanced analytics"",                                                                                                                                                                
    ""API access"",                                                                                                                                                                
    ""Team collaboration""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    return (                                                                                                                                                                
                                                                                                                                                                   
    {/* Navigation */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(!showCart)}                                                                                                                                                                
    className=""relative bg-white text-black px-3 py-1.5 rounded-md text-sm hover:bg-gray-200 transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    Cart 🛒                                                                                                                                                                
    {cartItems.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   
    {cartItems.length}                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setMobileMenuOpen(!mobileMenuOpen)}                                                                                                                                                                
    className=""text-white p-2 hover:bg-gray-800 rounded-md transition-colors md:hidden""                                                                                                                                                                
    >                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Mobile Menu */}                                                                                                                                                                
    {mobileMenuOpen && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('home'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'home' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('services'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'services' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('pricing'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'pricing' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('marketplace'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'marketplace' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('support'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'support' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Login                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Desktop Menu (hidden on mobile) */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'home' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('services')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'services' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('pricing')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'pricing' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('marketplace')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'marketplace' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('support')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'support' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Shopping Cart Sidebar */}                                                                                                                                                                
    {showCart && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Your Cart 🛒

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(false)}                                                                                                                                                                
    className=""text-2xl hover:text-gray-400""                                                                                                                                                                
    >                                                                                                                                                                
    ×                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {cartItems.length === 0 ? (                                                                                                                                                                

    Your cart is empty. Add some domains!

                                                                                                                                                                   
    ) : (                                                                                                                                                                
    <>                                                                                                                                                                
    {cartItems.map((item, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {item.name}

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => removeFromCart(index)}                                                                                                                                                                
    className=""text-red-400 hover:text-red-300 text-xs""                                                                                                                                                                
    >                                                                                                                                                                
    Remove                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Years:                                                                                                                                                                
                                                                                                                                                                   
    value={item.years}                                                                                                                                                                
    onChange={(e) => updateYears(index, parseInt(e.target.value))}                                                                                                                                                                
    className=""border border-gray-600 rounded px-1.5 py-0.5 text-xs bg-black text-white""                                                                                                                                                                
    >                                                                                                                                                                
    {[1,2,3,4,5].map(year => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""checkbox""                                                                                                                                                                
    checked={item.privacy}                                                                                                                                                                
    onChange={() => togglePrivacy(index)}                                                                                                                                                                
    className=""mr-1""                                                                                                                                                                
    />                                                                                                                                                                
    Privacy                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ${(parseFloat(item.price) + (item.privacy ? 2.99 : 0)) * item.years}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Total:                                                                                                                                                                
    ${getTotal()}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Checkout 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Hero Section */}                                                                                                                                                                
    {activeSection === 'home' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   

                                                                                                                                                                   
    WELCOME TO TACO DOMAINS 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Get Your Domain. No Salsa Required. (But Highly Recommended.)                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Enter your dream domain name...""                                                                                                                                                                
    value={searchTerm}                                                                                                                                                                
    onChange={(e) => setSearchTerm(e.target.value)}                                                                                                                                                                
    className=""w-full px-4 py-3 text-base border-2 border-gray-600 rounded-lg focus:outline-none focus:ring-4 focus:ring-gray-700 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
    .com .io .ai .app                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => searchDomains(searchTerm)}                                                                                                                                                                
    disabled={!searchTerm isSearching}                                                                                                                                                            
    className=""bg-white text-black font-bold py-3 px-4 rounded-lg text-base transition-colors flex items-center justify-center hover:bg-gray-200 disabled:bg-gray-700 disabled:text-gray-500""                                                                                                                                                                
    >                                                                                                                                                                
    {isSearching ? (                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
    🔍                                                                                                                                                                
    )}                                                                                                                                                                
    {isSearching ? 'Searching...' : 'Search Domain'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('how-it-works')}                                                                                                                                                                
    className=""mt-3 text-white hover:text-gray-300 font-medium text-sm transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    📖 How It Works                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Search Results */}                                                                                                                                                                
    {searchResults.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   

    Results for ""{searchTerm}""

                                                                                                                                                                   
                                                                                                                                                                   
    {searchResults.map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
    domain.available                                                                                                                                                                
    ? 'border-green-700 bg-green-900 bg-opacity-20'                                                                                                                                                                
    : 'border-red-700 bg-red-900 bg-opacity-20'                                                                                                                                                                
    } flex flex-col`}>                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.name}
                                                                                                                                                                   
                                                                                                                                                                   
    domain.available ? 'text-green-400' : 'text-red-400'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.available ? 'Available!' : 'Taken 😢'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available && (                                                                                                                                                                
    ${domain.price}/yr
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available ? (                                                                                                                                                                
                                                                                                                                                                   
    onClick={() => addToCart(domain)}                                                                                                                                                                
    className=""w-full bg-white text-black py-2 rounded-lg text-sm transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Add to Cart 🛒                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
                                                                                                                                                                   
    Register                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Taglines */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    ""Don't be shellfish — claim your domain today!""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Hot domains. Fresh ideas. Zero crumbs.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Your website deserves more than a boring burrito.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Services Section */}                                                                                                                                                                
    {activeSection === 'services' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Our Delicious Services 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    We've packed all the essential domain services with extra guac and a side of salsa.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {services.map((service, index) => (                                                                                                                                                                
                                                                                                                                                                   
    {service.icon}
                                                                                                                                                                   

    {service.title}

                                                                                                                                                                   

    {service.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {service.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Learn More                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* How It Works Section */}                                                                                                                                                                
    {activeSection === 'how-it-works' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    How It Works 📖                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    It's as easy as ordering your favorite taco combo!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    1
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Search Your Perfect Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Type in your dream domain name and we'll show you what's available across all major TLDs.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    2
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Add to Cart & Customize

                                                                                                                                                                   

                                                                                                                                                                   
    Choose how many years you want to register for, add WHOIS privacy, and select any additional services.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    3
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Checkout & Celebrate

                                                                                                                                                                   

                                                                                                                                                                   
    Complete your purchase and you're done! Your domain is registered and ready to use.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className=""bg-white text-black px-6 py-3 rounded-lg text-base font-bold transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Start Your Domain Search Now! 🔍                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Pricing Section */}                                                                                                                                                                
    {activeSection === 'pricing' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Pricing That's Not Half-Baked 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Transparent pricing with no hidden fees.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {pricingTiers.map((tier, index) => (                                                                                                                                                                
                                                                                                                                                                   
    tier.popular ? 'border-2 border-orange-500' : 'border border-gray-700'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {tier.popular && (                                                                                                                                                                
                                                                                                                                                                   
    MOST POPULAR                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                

    {tier.name}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.price}                                                                                                                                                                
    {tier.period}                                                                                                                                                                
                                                                                                                                                                   

    {tier.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    tier.popular                                                                                                                                                                
    ? 'bg-white text-black hover:bg-gray-200'                                                                                                                                                                
    : 'bg-gray-800 hover:bg-gray-700 text-white border border-gray-600'                                                                                                                                                                
    }`}>                                                                                                                                                                
    Get Started                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Special! 🌮

                                                                                                                                                                   

    Get 20% off any annual plan with code TACOTUESDAY

                                                                                                                                                                   
                                                                                                                                                                   
    Claim Your Discount                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Marketplace Section */}                                                                                                                                                                
    {activeSection === 'marketplace' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Brandable Domain Marketplace 🛒                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Buy and sell premium domains in our secure marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {[                                                                                                                                                                
    { name: ""startup.taco"", price: ""$2,499"", type: ""Premium"", category: ""Tech"" },                                                                                                                                                                
    { name: ""designsalsa.com"", price: ""$1,299"", type: ""Auction"", category: ""Design"" },                                                                                                                                                                
    { name: ""ai.nachos"", price: ""$5,999"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""cloudguac.io"", price: ""$899"", type: ""Fixed"", category: ""Cloud"" },                                                                                                                                                                
    { name: ""tacobot.ai"", price: ""$3,499"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""web3.taco"", price: ""$7,999"", type: ""Premium"", category: ""Blockchain"" }                                                                                                                                                                
    ].map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {domain.name}

                                                                                                                                                                   
                                                                                                                                                                   
    domain.type === ""Premium"" ? ""bg-red-900 text-red-200"" :                                                                                                                                                                
    domain.type === ""Auction"" ? ""bg-yellow-900 text-yellow-200"" :                                                                                                                                                                
    ""bg-green-900 text-green-200""                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.type}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.price}                                                                                                                                                                
    Category: {domain.category}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Brandable                                                                                                                                                                
    Memorable                                                                                                                                                                
    Short                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.type === ""Auction"" ? ""Place Bid"" : ""Buy Now""}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    Sell Your Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Have a domain you want to sell? List it on our marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Your domain name""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Asking Price""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    List Your Domain 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Support Section */}                                                                                                                                                                
    {activeSection === 'support' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Support & Education 📚                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Don't worry, we've got your back! From AI chatbots to live chat, we're here to help.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    💬 Live Support

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    AI Chatbot - Available 24/7                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Live Chat - Mon-Fri 9AM-9PM EST                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Email Support - response within 24 hours                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Start Chat Now                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tips

                                                                                                                                                                   

    Educational guides and videos

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    How to point your domain to Shopify

                                                                                                                                                                   

    5 min video tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Setting up email forwarding

                                                                                                                                                                   

    3 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    DNSSEC setup for enhanced security

                                                                                                                                                                   

    8 min advanced tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    View All Tutorials                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Tech Talks 🌮

                                                                                                                                                                   

    Join our weekly live sessions every Tuesday at 2PM EST

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Register for Next Session                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Watch Past Recordings                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    What Our Customers Say

                                                                                                                                                                   
                                                                                                                                                                   
    {testimonials.map((testimonial, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {[...Array(testimonial.rating)].map((_, i) => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   

    ""{testimonial.text}""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name.charAt(0)}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name}
                                                                                                                                                                   
    {testimonial.company}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Footer */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Services

                                                                                                                                                                   
                                                                                                                                                                   
  • Domain Registration
  •                                                                                                                                                                
  • Domain Transfer
  •                                                                                                                                                                
  • Web Hosting
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Support

                                                                                                                                                                   
                                                                                                                                                                   
  • Help Center
  •                                                                                                                                                                
  • Taco Tips
  •                                                                                                                                                                
  • Contact Us
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    © 2023 Taco Domains. All rights reserved. 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    Terms                                                                                                                                                                
    Privacy                                                                                                                                                                
    Cookies                                                                                                                                                                
    Sitemap                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Don't be shellfish — tell a friend about Taco Domains! 🌮

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    );                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    export default App;                                                                                                                                                                
    ``` answer finished null assistant 20074 9059 29133 512 false false null web_dev 1757355495.86966 null null null true null 1757355266 eb46feb5-1de0-450a-8996-6c4467622c0a user please make this code work for github qwen3-max-preview artifacts web_dev false null web_dev false phase null f2fca732-f869-4fcd-aff1-683a28baf4ef null ed5b918c-1f5a-4dae-9eeb-1779444e63ae 1757434805 assistant null artifacts web_dev qwen3-max-preview Qwen3-Max-Preview 0 ed5b918c-1f5a-4dae-9eeb-1779444e63ae eb46feb5-1de0-450a-8996-6c4467622c0a false phase null ```jsx                                                      
    import React, { useState, useEffect } from 'react';                                                                                                                                                                
                                                                                                                                                                   
    const App = () => {                                                                                                                                                                
    const [searchTerm, setSearchTerm] = useState('');                                                                                                                                                                
    const [searchResults, setSearchResults] = useState([]);                                                                                                                                                                
    const [isSearching, setIsSearching] = useState(false);                                                                                                                                                                
    const [activeSection, setActiveSection] = useState('home');                                                                                                                                                                
    const [cartItems, setCartItems] = useState([]);                                                                                                                                                                
    const [showCart, setShowCart] = useState(false);                                                                                                                                                                
    const [mobileMenuOpen, setMobileMenuOpen] = useState(false);                                                                                                                                                                
                                                                                                                                                                   
    // Mock domain search function                                                                                                                                                                
    const searchDomains = async (term) => {                                                                                                                                                                
    setIsSearching(true);                                                                                                                                                                
    // Simulate API call                                                                                                                                                                
    await new Promise(resolve => setTimeout(resolve, 1500));                                                                                                                                                                
    const tlds = ['.com', '.io', '.ai', '.app', '.tech', '.info', '.xyz', '.se', '.nu'];                                                                                                                                                                
    const results = tlds.map(tld => ({                                                                                                                                                                
    name: term + tld,                                                                                                                                                                
    available: Math.random() > 0.3,                                                                                                                                                                
    price: (Math.random() * 20 + 5).toFixed(2),                                                                                                                                                                
    tld: tld                                                                                                                                                                
    }));                                                                                                                                                                
    setSearchResults(results);                                                                                                                                                                
    setIsSearching(false);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const addToCart = (domain) => {                                                                                                                                                                
    setCartItems([...cartItems, { ...domain, privacy: true, years: 1 }]);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const removeFromCart = (index) => {                                                                                                                                                                
    setCartItems(cartItems.filter((_, i) => i !== index));                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const togglePrivacy = (index) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].privacy = !newCart[index].privacy;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const updateYears = (index, years) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].years = years;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const getTotal = () => {                                                                                                                                                                
    return cartItems.reduce((total, item) => {                                                                                                                                                                
    const basePrice = parseFloat(item.price);                                                                                                                                                                
    const privacyCost = item.privacy ? 2.99 : 0;                                                                                                                                                                
    return total + ((basePrice + privacyCost) * item.years);                                                                                                                                                                
    }, 0).toFixed(2);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for services                                                                                                                                                                
    const services = [                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🌐"",                                                                                                                                                                
    title: ""Domain Registration"",                                                                                                                                                                
    description: ""All major TLDs (.com, .io, .ai, .app, .se, .nu, .tech, .info) and yes — if it existed, we'd register .taco"",                                                                                                                                                                
    features: [""Real-time availability"", ""Bulk search"", ""One-click registration"", ""WHOIS privacy toggle""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""💡"",                                                                                                                                                                
    title: ""Domain Brainstorming"",                                                                                                                                                                
    description: ""Spicy suggestions guaranteed to find the perfect name for your brand"",                                                                                                                                                                
    features: [""AI-powered suggestions"", ""Brand alignment scoring"", ""Competitor analysis"", ""Trademark checks""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🛒"",                                                                                                                                                                
    title: ""Brandable Marketplace"",                                                                                                                                                                
    description: ""Buy and sell premium domains in our secure marketplace"",                                                                                                                                                                
    features: [""Auction system"", ""Escrow service"", ""Premium domains"", ""Expiring domains""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🚀"",                                                                                                                                                                
    title: ""Web Hosting + Guac"",                                                                                                                                                                
    description: ""Fast, reliable hosting with extra guac (optional but recommended)"",                                                                                                                                                                
    features: [""SSD storage"", ""Free SSL"", ""1-click installs"", ""24/7 support""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🔒"",                                                                                                                                                                
    title: ""SSL Certificates"",                                                                                                                                                                
    description: ""Because even tacos need security"",                                                                                                                                                                
    features: [""Free Let's Encrypt"", ""Auto-install & renew"", ""Premium OV/EV options"", ""One-click HTTPS""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""📊"",                                                                                                                                                                
    title: ""Analytics & Shortlinks"",                                                                                                                                                                
    description: ""Create branded short URLs with click analytics"",                                                                                                                                                                
    features: [""go.taco.domains/yourlink"", ""Vanity subdomains"", ""Click tracking"", ""UTM parameters""]                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for testimonials                                                                                                                                                                
    const testimonials = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Maria Garcia"",                                                                                                                                                                
    company: ""Salsa Startup"",                                                                                                                                                                
    text: ""Taco Domains made setting up our website as easy as ordering tacos. The interface is so intuitive, even my abuela could use it!"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Jamal Chen"",                                                                                                                                                                
    company: ""Tech Burrito"",                                                                                                                                                                
    text: ""Switched from GoDaddy and never looked back. The 'Guac Guard' security bundle is worth every penny. Plus, who doesn't love taco-themed error messages?"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Sophie Dubois"",                                                                                                                                                                
    company: ""Parisian Tacos"",                                                                                                                                                                
    text: ""The domain brainstorming tool suggested 'parisiantacos.com' - perfect! Customer support responded faster than I could say 'extra salsa'."",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for pricing                                                                                                                                                                
    const pricingTiers = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Single Taco"",                                                                                                                                                                
    price: ""$9.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Perfect for personal projects"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""1 domain registration"",                                                                                                                                                                
    ""Basic DNS management"",                                                                                                                                                                
    ""Free SSL certificate"",                                                                                                                                                                
    ""Email forwarding"",                                                                                                                                                                
    ""Standard support""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Combo"",                                                                                                                                                                
    price: ""$24.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Best value for small businesses"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""5 domain registrations"",                                                                                                                                                                
    ""Advanced DNS management"",                                                                                                                                                                
    ""Free SSL certificates"",                                                                                                                                                                
    ""Email forwarding + MX setup"",                                                                                                                                                                
    ""Priority support"",                                                                                                                                                                
    ""Basic analytics""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: true                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Feast"",                                                                                                                                                                
    price: ""$49.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""For agencies and enterprises"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""Unlimited domains"",                                                                                                                                                                
    ""Premium DNS with Anycast"",                                                                                                                                                                
    ""SSL certificates (all types)"",                                                                                                                                                                
    ""Advanced email routing"",                                                                                                                                                                
    ""24/7 priority support"",                                                                                                                                                                
    ""Advanced analytics"",                                                                                                                                                                
    ""API access"",                                                                                                                                                                
    ""Team collaboration""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    return (                                                                                                                                                                
                                                                                                                                                                   
    {/* Navigation */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(!showCart)}                                                                                                                                                                
    className=""relative bg-white text-black px-3 py-1.5 rounded-md text-sm hover:bg-gray-200 transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    Cart 🛒                                                                                                                                                                
    {cartItems.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   
    {cartItems.length}                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setMobileMenuOpen(!mobileMenuOpen)}                                                                                                                                                                
    className=""text-white p-2 hover:bg-gray-800 rounded-md transition-colors md:hidden""                                                                                                                                                                
    >                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Mobile Menu */}                                                                                                                                                                
    {mobileMenuOpen && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('home'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'home' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('services'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'services' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('pricing'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'pricing' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('marketplace'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'marketplace' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('support'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'support' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Login                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Desktop Menu (hidden on mobile) */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'home' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('services')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'services' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('pricing')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'pricing' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('marketplace')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'marketplace' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('support')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'support' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Shopping Cart Sidebar */}                                                                                                                                                                
    {showCart && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Your Cart 🛒

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(false)}                                                                                                                                                                
    className=""text-2xl hover:text-gray-400""                                                                                                                                                                
    >                                                                                                                                                                
    ×                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {cartItems.length === 0 ? (                                                                                                                                                                

    Your cart is empty. Add some domains!

                                                                                                                                                                   
    ) : (                                                                                                                                                                
    <>                                                                                                                                                                
    {cartItems.map((item, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {item.name}

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => removeFromCart(index)}                                                                                                                                                                
    className=""text-red-400 hover:text-red-300 text-xs""                                                                                                                                                                
    >                                                                                                                                                                
    Remove                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Years:                                                                                                                                                                
                                                                                                                                                                   
    value={item.years}                                                                                                                                                                
    onChange={(e) => updateYears(index, parseInt(e.target.value))}                                                                                                                                                                
    className=""border border-gray-600 rounded px-1.5 py-0.5 text-xs bg-black text-white""                                                                                                                                                                
    >                                                                                                                                                                
    {[1,2,3,4,5].map(year => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""checkbox""                                                                                                                                                                
    checked={item.privacy}                                                                                                                                                                
    onChange={() => togglePrivacy(index)}                                                                                                                                                                
    className=""mr-1""                                                                                                                                                                
    />                                                                                                                                                                
    Privacy                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ${(parseFloat(item.price) + (item.privacy ? 2.99 : 0)) * item.years}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Total:                                                                                                                                                                
    ${getTotal()}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Checkout 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Hero Section */}                                                                                                                                                                
    {activeSection === 'home' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   

                                                                                                                                                                   
    WELCOME TO TACO DOMAINS 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Get Your Domain. No Salsa Required. (But Highly Recommended.)                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Enter your dream domain name...""                                                                                                                                                                
    value={searchTerm}                                                                                                                                                                
    onChange={(e) => setSearchTerm(e.target.value)}                                                                                                                                                                
    className=""w-full px-4 py-3 text-base border-2 border-gray-600 rounded-lg focus:outline-none focus:ring-4 focus:ring-gray-700 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
    .com .io .ai .app                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => searchDomains(searchTerm)}                                                                                                                                                                
    disabled={!searchTerm isSearching}                                                                                                                                                            
    className=""bg-white text-black font-bold py-3 px-4 rounded-lg text-base transition-colors flex items-center justify-center hover:bg-gray-200 disabled:bg-gray-700 disabled:text-gray-500""                                                                                                                                                                
    >                                                                                                                                                                
    {isSearching ? (                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
    🔍                                                                                                                                                                
    )}                                                                                                                                                                
    {isSearching ? 'Searching...' : 'Search Domain'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('how-it-works')}                                                                                                                                                                
    className=""mt-3 text-white hover:text-gray-300 font-medium text-sm transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    📖 How It Works                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Search Results */}                                                                                                                                                                
    {searchResults.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   

    Results for ""{searchTerm}""

                                                                                                                                                                   
                                                                                                                                                                   
    {searchResults.map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
    domain.available                                                                                                                                                                
    ? 'border-green-700 bg-green-900 bg-opacity-20'                                                                                                                                                                
    : 'border-red-700 bg-red-900 bg-opacity-20'                                                                                                                                                                
    } flex flex-col`}>                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.name}
                                                                                                                                                                   
                                                                                                                                                                   
    domain.available ? 'text-green-400' : 'text-red-400'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.available ? 'Available!' : 'Taken 😢'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available && (                                                                                                                                                                
    ${domain.price}/yr
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available ? (                                                                                                                                                                
                                                                                                                                                                   
    onClick={() => addToCart(domain)}                                                                                                                                                                
    className=""w-full bg-white text-black py-2 rounded-lg text-sm transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Add to Cart 🛒                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
                                                                                                                                                                   
    Register                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Taglines */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    ""Don't be shellfish — claim your domain today!""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Hot domains. Fresh ideas. Zero crumbs.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Your website deserves more than a boring burrito.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Services Section */}                                                                                                                                                                
    {activeSection === 'services' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Our Delicious Services 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    We've packed all the essential domain services with extra guac and a side of salsa.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {services.map((service, index) => (                                                                                                                                                                
                                                                                                                                                                   
    {service.icon}
                                                                                                                                                                   

    {service.title}

                                                                                                                                                                   

    {service.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {service.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Learn More                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* How It Works Section */}                                                                                                                                                                
    {activeSection === 'how-it-works' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    How It Works 📖                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    It's as easy as ordering your favorite taco combo!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    1
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Search Your Perfect Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Type in your dream domain name and we'll show you what's available across all major TLDs.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    2
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Add to Cart & Customize

                                                                                                                                                                   

                                                                                                                                                                   
    Choose how many years you want to register for, add WHOIS privacy, and select any additional services.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    3
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Checkout & Celebrate

                                                                                                                                                                   

                                                                                                                                                                   
    Complete your purchase and you're done! Your domain is registered and ready to use.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className=""bg-white text-black px-6 py-3 rounded-lg text-base font-bold transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Start Your Domain Search Now! 🔍                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Pricing Section */}                                                                                                                                                                
    {activeSection === 'pricing' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Pricing That's Not Half-Baked 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Transparent pricing with no hidden fees.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {pricingTiers.map((tier, index) => (                                                                                                                                                                
                                                                                                                                                                   
    tier.popular ? 'border-2 border-orange-500' : 'border border-gray-700'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {tier.popular && (                                                                                                                                                                
                                                                                                                                                                   
    MOST POPULAR                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                

    {tier.name}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.price}                                                                                                                                                                
    {tier.period}                                                                                                                                                                
                                                                                                                                                                   

    {tier.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    tier.popular                                                                                                                                                                
    ? 'bg-white text-black hover:bg-gray-200'                                                                                                                                                                
    : 'bg-gray-800 hover:bg-gray-700 text-white border border-gray-600'                                                                                                                                                                
    }`}>                                                                                                                                                                
    Get Started                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Special! 🌮

                                                                                                                                                                   

    Get 20% off any annual plan with code TACOTUESDAY

                                                                                                                                                                   
                                                                                                                                                                   
    Claim Your Discount                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Marketplace Section */}                                                                                                                                                                
    {activeSection === 'marketplace' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Brandable Domain Marketplace 🛒                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Buy and sell premium domains in our secure marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {[                                                                                                                                                                
    { name: ""startup.taco"", price: ""$2,499"", type: ""Premium"", category: ""Tech"" },                                                                                                                                                                
    { name: ""designsalsa.com"", price: ""$1,299"", type: ""Auction"", category: ""Design"" },                                                                                                                                                                
    { name: ""ai.nachos"", price: ""$5,999"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""cloudguac.io"", price: ""$899"", type: ""Fixed"", category: ""Cloud"" },                                                                                                                                                                
    { name: ""tacobot.ai"", price: ""$3,499"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""web3.taco"", price: ""$7,999"", type: ""Premium"", category: ""Blockchain"" }                                                                                                                                                                
    ].map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {domain.name}

                                                                                                                                                                   
                                                                                                                                                                   
    domain.type === ""Premium"" ? ""bg-red-900 text-red-200"" :                                                                                                                                                                
    domain.type === ""Auction"" ? ""bg-yellow-900 text-yellow-200"" :                                                                                                                                                                
    ""bg-green-900 text-green-200""                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.type}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.price}                                                                                                                                                                
    Category: {domain.category}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Brandable                                                                                                                                                                
    Memorable                                                                                                                                                                
    Short                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.type === ""Auction"" ? ""Place Bid"" : ""Buy Now""}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    Sell Your Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Have a domain you want to sell? List it on our marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Your domain name""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Asking Price""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    List Your Domain 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Support Section */}                                                                                                                                                                
    {activeSection === 'support' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Support & Education 📚                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Don't worry, we've got your back! From AI chatbots to live chat, we're here to help.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    💬 Live Support

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    AI Chatbot - Available 24/7                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Live Chat - Mon-Fri 9AM-9PM EST                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Email Support - response within 24 hours                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Start Chat Now                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tips

                                                                                                                                                                   

    Educational guides and videos

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    How to point your domain to Shopify

                                                                                                                                                                   

    5 min video tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Setting up email forwarding

                                                                                                                                                                   

    3 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    DNSSEC setup for enhanced security

                                                                                                                                                                   

    8 min advanced tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    View All Tutorials                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Tech Talks 🌮

                                                                                                                                                                   

    Join our weekly live sessions every Tuesday at 2PM EST

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Register for Next Session                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Watch Past Recordings                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    What Our Customers Say

                                                                                                                                                                   
                                                                                                                                                                   
    {testimonials.map((testimonial, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {[...Array(testimonial.rating)].map((_, i) => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   

    ""{testimonial.text}""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name.charAt(0)}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name}
                                                                                                                                                                   
    {testimonial.company}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Footer */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Services

                                                                                                                                                                   
                                                                                                                                                                   
  • Domain Registration
  •                                                                                                                                                                
  • Domain Transfer
  •                                                                                                                                                                
  • Web Hosting
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Support

                                                                                                                                                                   
                                                                                                                                                                   
  • Help Center
  •                                                                                                                                                                
  • Taco Tips
  •                                                                                                                                                                
  • Contact Us
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    © 2023 Taco Domains. All rights reserved. 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    Terms                                                                                                                                                                
    Privacy                                                                                                                                                                
    Cookies                                                                                                                                                                
    Sitemap                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Don't be shellfish — tell a friend about Taco Domains! 🌮

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    );                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    export default App;                                                                                                                                                                
    ``` answer finished null assistant 29150 9059 38209 512 false false null web_dev 1757435067.86546 null null null true null 1757434805 ed5b918c-1f5a-4dae-9eeb-1779444e63ae ed5b918c-1f5a-4dae-9eeb-1779444e63ae qwen3-max-preview 45a2c2ba-9586-4835-9f31-53c159374083 user change the color to black with white text qwen3-max-preview artifacts web_dev false null web_dev false phase null null null 805b50dd-13ae-467b-9bbb-9ead0c19e5a0 108791a6-f36d-4f4c-8579-fa07d5075c3a Pasted_Text_1757271622887.txt text/plain file default 41353 https://cdn.qwenlm.ai/f2503007-32f7-4ca8-9040-1253f026e33c/108791a6-f36d-4f4c-8579-fa07d5075c3a_Pasted_Text_1757271622887.txt?key=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyZXNvdXJjZV91c2VyX2lkIjoiZjI1MDMwMDctMzJmNy00Y2E4LTkwNDAtMTI1M2YwMjZlMzNjIiwicmVzb3VyY2VfaWQiOiIxMDg3OTFhNi1mMzZkLTRmNGMtODU3OS1mYTA3ZDUwNzVjM2EiLCJyZXNvdXJjZV9jaGF0X2lkIjpudWxsfQ.8bo2wK1WGHMsEKmEL4ZF4hxhkF3n-SXiP8E1rdbOqdM 1757271635032 Pasted_Text_1757271622887.txt null 108791a6-f36d-4f4c-8579-fa07d5075c3a f2503007-32f7-4ca8-9040-1253f026e33c Pasted_Text_1757271622887.txt 41353 text/plain 1757271635032 0 uploaded success 8ead5ced-7b20-49a0-aeaa-533b8f4ac13a file full 98a5faa5-87fb-4fc4-b2e5-4ebf13535d03 1757271673 assistant null artifacts web_dev qwen3-max-preview Qwen3-Max-Preview 0 805b50dd-13ae-467b-9bbb-9ead0c19e5a0 45a2c2ba-9586-4835-9f31-53c159374083 1d41941a-9d1f-41fe-905f-0662b54ac16a false phase null ```jsx
    import React, { useState, useEffect } from 'react';                                                                                                                                                                
                                                                                                                                                                   
    const App = () => {                                                                                                                                                                
    const [searchTerm, setSearchTerm] = useState('');                                                                                                                                                                
    const [searchResults, setSearchResults] = useState([]);                                                                                                                                                                
    const [isSearching, setIsSearching] = useState(false);                                                                                                                                                                
    const [activeSection, setActiveSection] = useState('home');                                                                                                                                                                
    const [cartItems, setCartItems] = useState([]);                                                                                                                                                                
    const [showCart, setShowCart] = useState(false);                                                                                                                                                                
                                                                                                                                                                   
    // Mock domain search function                                                                                                                                                                
    const searchDomains = async (term) => {                                                                                                                                                                
    setIsSearching(true);                                                                                                                                                                
    // Simulate API call                                                                                                                                                                
    await new Promise(resolve => setTimeout(resolve, 1500));                                                                                                                                                                
    const tlds = ['.com', '.io', '.ai', '.app', '.tech', '.info', '.xyz', '.se', '.nu'];                                                                                                                                                                
    const results = tlds.map(tld => ({                                                                                                                                                                
    name: term + tld,                                                                                                                                                                
    available: Math.random() > 0.3,                                                                                                                                                                
    price: (Math.random() * 20 + 5).toFixed(2),                                                                                                                                                                
    tld: tld                                                                                                                                                                
    }));                                                                                                                                                                
    setSearchResults(results);                                                                                                                                                                
    setIsSearching(false);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const addToCart = (domain) => {                                                                                                                                                                
    setCartItems([...cartItems, { ...domain, privacy: true, years: 1 }]);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const removeFromCart = (index) => {                                                                                                                                                                
    setCartItems(cartItems.filter((_, i) => i !== index));                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const togglePrivacy = (index) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].privacy = !newCart[index].privacy;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const updateYears = (index, years) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].years = years;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const getTotal = () => {                                                                                                                                                                
    return cartItems.reduce((total, item) => {                                                                                                                                                                
    const basePrice = parseFloat(item.price);                                                                                                                                                                
    const privacyCost = item.privacy ? 2.99 : 0;                                                                                                                                                                
    return total + ((basePrice + privacyCost) * item.years);                                                                                                                                                                
    }, 0).toFixed(2);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for services                                                                                                                                                                
    const services = [                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🌐"",                                                                                                                                                                
    title: ""Domain Registration"",                                                                                                                                                                
    description: ""All major TLDs (.com, .io, .ai, .app, .se, .nu, .tech, .info) and yes — if it existed, we'd register .taco"",                                                                                                                                                                
    features: [""Real-time availability"", ""Bulk search"", ""One-click registration"", ""WHOIS privacy toggle""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""💡"",                                                                                                                                                                
    title: ""Domain Brainstorming"",                                                                                                                                                                
    description: ""Spicy suggestions guaranteed to find the perfect name for your brand"",                                                                                                                                                                
    features: [""AI-powered suggestions"", ""Brand alignment scoring"", ""Competitor analysis"", ""Trademark checks""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🛒"",                                                                                                                                                                
    title: ""Brandable Marketplace"",                                                                                                                                                                
    description: ""Buy and sell premium domains in our secure marketplace"",                                                                                                                                                                
    features: [""Auction system"", ""Escrow service"", ""Premium domains"", ""Expiring domains""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🚀"",                                                                                                                                                                
    title: ""Web Hosting + Guac"",                                                                                                                                                                
    description: ""Fast, reliable hosting with extra guac (optional but recommended)"",                                                                                                                                                                
    features: [""SSD storage"", ""Free SSL"", ""1-click installs"", ""24/7 support""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🔒"",                                                                                                                                                                
    title: ""SSL Certificates"",                                                                                                                                                                
    description: ""Because even tacos need security"",                                                                                                                                                                
    features: [""Free Let's Encrypt"", ""Auto-install & renew"", ""Premium OV/EV options"", ""One-click HTTPS""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""📊"",                                                                                                                                                                
    title: ""Analytics & Shortlinks"",                                                                                                                                                                
    description: ""Create branded short URLs with click analytics"",                                                                                                                                                                
    features: [""go.taco.domains/yourlink"", ""Vanity subdomains"", ""Click tracking"", ""UTM parameters""]                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for testimonials                                                                                                                                                                
    const testimonials = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Maria Garcia"",                                                                                                                                                                
    company: ""Salsa Startup"",                                                                                                                                                                
    text: ""Taco Domains made setting up our website as easy as ordering tacos. The interface is so intuitive, even my abuela could use it!"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Jamal Chen"",                                                                                                                                                                
    company: ""Tech Burrito"",                                                                                                                                                                
    text: ""Switched from GoDaddy and never looked back. The 'Guac Guard' security bundle is worth every penny. Plus, who doesn't love taco-themed error messages?"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Sophie Dubois"",                                                                                                                                                                
    company: ""Parisian Tacos"",                                                                                                                                                                
    text: ""The domain brainstorming tool suggested 'parisiantacos.com' - perfect! Customer support responded faster than I could say 'extra salsa'."",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for pricing                                                                                                                                                                
    const pricingTiers = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Single Taco"",                                                                                                                                                                
    price: ""$9.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Perfect for personal projects"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""1 domain registration"",                                                                                                                                                                
    ""Basic DNS management"",                                                                                                                                                                
    ""Free SSL certificate"",                                                                                                                                                                
    ""Email forwarding"",                                                                                                                                                                
    ""Standard support""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Combo"",                                                                                                                                                                
    price: ""$24.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Best value for small businesses"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""5 domain registrations"",                                                                                                                                                                
    ""Advanced DNS management"",                                                                                                                                                                
    ""Free SSL certificates"",                                                                                                                                                                
    ""Email forwarding + MX setup"",                                                                                                                                                                
    ""Priority support"",                                                                                                                                                                
    ""Basic analytics""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: true                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Feast"",                                                                                                                                                                
    price: ""$49.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""For agencies and enterprises"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""Unlimited domains"",                                                                                                                                                                
    ""Premium DNS with Anycast"",                                                                                                                                                                
    ""SSL certificates (all types)"",                                                                                                                                                                
    ""Advanced email routing"",                                                                                                                                                                
    ""24/7 priority support"",                                                                                                                                                                
    ""Advanced analytics"",                                                                                                                                                                
    ""API access"",                                                                                                                                                                
    ""Team collaboration""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    return (                                                                                                                                                                
                                                                                                                                                                   
    {/* Navigation */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'home' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('services')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'services' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('pricing')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'pricing' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('marketplace')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'marketplace' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('support')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'support' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(!showCart)}                                                                                                                                                                
    className=""relative bg-white text-black px-4 py-2 rounded-lg hover:bg-gray-200 transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    Cart 🛒                                                                                                                                                                
    {cartItems.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   
    {cartItems.length}                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Login                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Shopping Cart Sidebar */}                                                                                                                                                                
    {showCart && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Your Cart 🛒

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(false)}                                                                                                                                                                
    className=""text-2xl hover:text-gray-400""                                                                                                                                                                
    >                                                                                                                                                                
    ×                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {cartItems.length === 0 ? (                                                                                                                                                                

    Your cart is empty. Add some domains!

                                                                                                                                                                   
    ) : (                                                                                                                                                                
    <>                                                                                                                                                                
    {cartItems.map((item, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {item.name}

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => removeFromCart(index)}                                                                                                                                                                
    className=""text-red-400 hover:text-red-300""                                                                                                                                                                
    >                                                                                                                                                                
    Remove                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Years:                                                                                                                                                                
                                                                                                                                                                   
    value={item.years}                                                                                                                                                                
    onChange={(e) => updateYears(index, parseInt(e.target.value))}                                                                                                                                                                
    className=""border border-gray-600 rounded px-2 py-1 text-sm bg-black text-white""                                                                                                                                                                
    >                                                                                                                                                                
    {[1,2,3,4,5].map(year => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""checkbox""                                                                                                                                                                
    checked={item.privacy}                                                                                                                                                                
    onChange={() => togglePrivacy(index)}                                                                                                                                                                
    className=""mr-2""                                                                                                                                                                
    />                                                                                                                                                                
    WHOIS Privacy ($2.99/yr)                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ${(parseFloat(item.price) + (item.privacy ? 2.99 : 0)) * item.years}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Total:                                                                                                                                                                
    ${getTotal()}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Checkout 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Hero Section */}                                                                                                                                                                
    {activeSection === 'home' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   

                                                                                                                                                                   
    WELCOME TO TACO DOMAINS 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Get Your Domain. No Salsa Required. (But Highly Recommended.)                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Enter your dream domain name...""                                                                                                                                                                
    value={searchTerm}                                                                                                                                                                
    onChange={(e) => setSearchTerm(e.target.value)}                                                                                                                                                                
    className=""w-full px-6 py-4 text-lg border-2 border-gray-600 rounded-lg focus:outline-none focus:ring-4 focus:ring-gray-700 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
    .com .io .ai .app .tech                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => searchDomains(searchTerm)}                                                                                                                                                                
    disabled={!searchTerm isSearching}                                                                                                                                                            
    className=""bg-white text-black font-bold py-4 px-8 rounded-lg text-lg transition-colors flex items-center justify-center hover:bg-gray-200 disabled:bg-gray-700 disabled:text-gray-500""                                                                                                                                                                
    >                                                                                                                                                                
    {isSearching ? (                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
    🔍                                                                                                                                                                
    )}                                                                                                                                                                
    {isSearching ? 'Searching...' : 'Search Domain'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('how-it-works')}                                                                                                                                                                
    className=""mt-4 text-white hover:text-gray-300 font-medium transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    📖 How It Works (It's Easy, Promise)                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Search Results */}                                                                                                                                                                
    {searchResults.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   

    Search Results for ""{searchTerm}""

                                                                                                                                                                   
                                                                                                                                                                   
    {searchResults.map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
    domain.available                                                                                                                                                                
    ? 'border-green-700 bg-green-900 bg-opacity-20'                                                                                                                                                                
    : 'border-red-700 bg-red-900 bg-opacity-20'                                                                                                                                                                
    } flex justify-between items-center`}>                                                                                                                                                                
                                                                                                                                                                   
    {domain.name}
                                                                                                                                                                   
                                                                                                                                                                   
    domain.available ? 'text-green-400' : 'text-red-400'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.available ? 'Available!' : 'Taken 😢'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available && (                                                                                                                                                                
    ${domain.price}/yr
                                                                                                                                                                   
    )}                                                                                                                                                                
    {domain.available ? (                                                                                                                                                                
                                                                                                                                                                   
    onClick={() => addToCart(domain)}                                                                                                                                                                
    className=""bg-white text-black px-6 py-2 rounded-lg transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Add to Cart 🛒                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
                                                                                                                                                                   
    Register                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Taglines */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    ""Don't be shellfish — claim your domain today!""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Hot domains. Fresh ideas. Zero crumbs.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Your website deserves more than a boring burrito.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Services Section */}                                                                                                                                                                
    {activeSection === 'services' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Our Delicious Services 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    We've packed all the essential domain services with extra guac and a side of salsa.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {services.map((service, index) => (                                                                                                                                                                
                                                                                                                                                                   
    {service.icon}
                                                                                                                                                                   

    {service.title}

                                                                                                                                                                   

    {service.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {service.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Learn More                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* How It Works Section */}                                                                                                                                                                
    {activeSection === 'how-it-works' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    How It Works 📖                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    It's as easy as ordering your favorite taco combo!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    1
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Search Your Perfect Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Type in your dream domain name and we'll show you what's available across all major TLDs.                                                                                                                                                                
    Our AI-powered suggestions will help if you're stuck!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    2
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Add to Cart & Customize

                                                                                                                                                                   

                                                                                                                                                                   
    Choose how many years you want to register for, add WHOIS privacy, and select any additional services like hosting or SSL certificates.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    3
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Checkout & Celebrate

                                                                                                                                                                   

                                                                                                                                                                   
    Complete your purchase and you're done! Your domain is registered and ready to use.                                                                                                                                                                
    We'll even send you a virtual taco to celebrate 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className=""bg-white text-black px-8 py-4 rounded-lg text-xl font-bold transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Start Your Domain Search Now! 🔍                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Pricing Section */}                                                                                                                                                                
    {activeSection === 'pricing' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Pricing That's Not Half-Baked 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Transparent pricing with no hidden fees. Just delicious domain services at fair prices.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {pricingTiers.map((tier, index) => (                                                                                                                                                                
                                                                                                                                                                   
    tier.popular ? 'border-2 border-orange-500 transform scale-105' : 'border border-gray-700'                                                                                                                                                                
    } transition-transform hover:scale-105`}>                                                                                                                                                                
    {tier.popular && (                                                                                                                                                                
                                                                                                                                                                   
    MOST POPULAR                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                

    {tier.name}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.price}                                                                                                                                                                
    {tier.period}                                                                                                                                                                
                                                                                                                                                                   

    {tier.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    tier.popular                                                                                                                                                                
    ? 'bg-white text-black hover:bg-gray-200'                                                                                                                                                                
    : 'bg-gray-800 hover:bg-gray-700 text-white border border-gray-600'                                                                                                                                                                
    }`}>                                                                                                                                                                
    Get Started                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Special! 🌮

                                                                                                                                                                   

    Get 20% off any annual plan with code TACOTUESDAY

                                                                                                                                                                   
                                                                                                                                                                   
    Claim Your Discount                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Marketplace Section */}                                                                                                                                                                
    {activeSection === 'marketplace' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Brandable Domain Marketplace 🛒                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Buy and sell premium domains in our secure marketplace. Auction system for expiring or premium domains with escrow service.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {[                                                                                                                                                                
    { name: ""startup.taco"", price: ""$2,499"", type: ""Premium"", category: ""Tech"" },                                                                                                                                                                
    { name: ""designsalsa.com"", price: ""$1,299"", type: ""Auction"", category: ""Design"" },                                                                                                                                                                
    { name: ""ai.nachos"", price: ""$5,999"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""cloudguac.io"", price: ""$899"", type: ""Fixed"", category: ""Cloud"" },                                                                                                                                                                
    { name: ""tacobot.ai"", price: ""$3,499"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""web3.taco"", price: ""$7,999"", type: ""Premium"", category: ""Blockchain"" }                                                                                                                                                                
    ].map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {domain.name}

                                                                                                                                                                   
                                                                                                                                                                   
    domain.type === ""Premium"" ? ""bg-red-900 text-red-200"" :                                                                                                                                                                
    domain.type === ""Auction"" ? ""bg-yellow-900 text-yellow-200"" :                                                                                                                                                                
    ""bg-green-900 text-green-200""                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.type}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.price}                                                                                                                                                                
    Category: {domain.category}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Brandable                                                                                                                                                                
    Memorable                                                                                                                                                                
    Short                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.type === ""Auction"" ? ""Place Bid"" : ""Buy Now""}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    Sell Your Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Have a domain you want to sell? List it on our marketplace and reach thousands of potential buyers.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Your domain name""                                                                                                                                                                
    className=""px-4 py-3 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Asking Price""                                                                                                                                                                
    className=""px-4 py-3 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Category""                                                                                                                                                                
    className=""px-4 py-3 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    List Your Domain 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Support Section */}                                                                                                                                                                
    {activeSection === 'support' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Support & Education 📚                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Don't worry, we've got your back! From AI chatbots to live chat, we're here to help.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    💬 Live Support

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    AI Chatbot - Available 24/7                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Live Chat - Mon-Fri 9AM-9PM EST                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Email Support - response within 24 hours                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Phone Support - for premium customers                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Start Chat Now                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tips

                                                                                                                                                                   

    Educational guides and videos to help you master your domains

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    How to point your domain to Shopify

                                                                                                                                                                   

    5 min video tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Setting up email forwarding

                                                                                                                                                                   

    3 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    DNSSEC setup for enhanced security

                                                                                                                                                                   

    8 min advanced tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Creating branded shortlinks

                                                                                                                                                                   

    4 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    View All Tutorials                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Tech Talks 🌮

                                                                                                                                                                   

    Join our weekly live sessions every Tuesday at 2PM EST

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Register for Next Session                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Watch Past Recordings                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    What Our Customers Say

                                                                                                                                                                   
                                                                                                                                                                   
    {testimonials.map((testimonial, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {[...Array(testimonial.rating)].map((_, i) => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   

    ""{testimonial.text}""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name.charAt(0)}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name}
                                                                                                                                                                   
    {testimonial.company}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Footer */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    𝕏                                                                                                                                                                
    𝑓                                                                                                                                                                
    𝕀                                                                                                                                                                
    𝓛                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Services

                                                                                                                                                                   
                                                                                                                                                                   
  • Domain Registration
  •                                                                                                                                                                
  • Domain Transfer
  •                                                                                                                                                                
  • Web Hosting
  •                                                                                                                                                                
  • SSL Certificates
  •                                                                                                                                                                
  • Email Forwarding
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Support

                                                                                                                                                                   
                                                                                                                                                                   
  • Help Center
  •                                                                                                                                                                
  • Taco Tips
  •                                                                                                                                                                
  • Community Forum
  •                                                                                                                                                                
  • Contact Us
  •                                                                                                                                                                
  • Status Page
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Company

                                                                                                                                                                   
                                                                                                                                                                   
  • About Us
  •                                                                                                                                                                
  • Careers
  •                                                                                                                                                                
  • Blog
  •                                                                                                                                                                
  • Press
  •                                                                                                                                                                
  • Partners
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    © 2023 Taco Domains. All rights reserved. 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    Terms                                                                                                                                                                
    Privacy                                                                                                                                                                
    Cookies                                                                                                                                                                
    Sitemap                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Don't be shellfish — tell a friend about Taco Domains! 🌮

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    );                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    export default App;                                                                                                                                                                
    ``` answer finished null assistant 10676 9382 20058 512 false false null web_dev 1757271888.46502 null null null true null 1757271673 1d41941a-9d1f-41fe-905f-0662b54ac16a user please make it for mobile use qwen3-max-preview artifacts web_dev false null web_dev false phase null 805b50dd-13ae-467b-9bbb-9ead0c19e5a0 null f2fca732-f869-4fcd-aff1-683a28baf4ef 1757355266 assistant null artifacts web_dev qwen3-max-preview Qwen3-Max-Preview 0 f2fca732-f869-4fcd-aff1-683a28baf4ef 1d41941a-9d1f-41fe-905f-0662b54ac16a eb46feb5-1de0-450a-8996-6c4467622c0a false phase null ```jsx                                                        
    import React, { useState, useEffect } from 'react';                                                                                                                                                                
                                                                                                                                                                   
    const App = () => {                                                                                                                                                                
    const [searchTerm, setSearchTerm] = useState('');                                                                                                                                                                
    const [searchResults, setSearchResults] = useState([]);                                                                                                                                                                
    const [isSearching, setIsSearching] = useState(false);                                                                                                                                                                
    const [activeSection, setActiveSection] = useState('home');                                                                                                                                                                
    const [cartItems, setCartItems] = useState([]);                                                                                                                                                                
    const [showCart, setShowCart] = useState(false);                                                                                                                                                                
    const [mobileMenuOpen, setMobileMenuOpen] = useState(false);                                                                                                                                                                
                                                                                                                                                                   
    // Mock domain search function                                                                                                                                                                
    const searchDomains = async (term) => {                                                                                                                                                                
    setIsSearching(true);                                                                                                                                                                
    // Simulate API call                                                                                                                                                                
    await new Promise(resolve => setTimeout(resolve, 1500));                                                                                                                                                                
    const tlds = ['.com', '.io', '.ai', '.app', '.tech', '.info', '.xyz', '.se', '.nu'];                                                                                                                                                                
    const results = tlds.map(tld => ({                                                                                                                                                                
    name: term + tld,                                                                                                                                                                
    available: Math.random() > 0.3,                                                                                                                                                                
    price: (Math.random() * 20 + 5).toFixed(2),                                                                                                                                                                
    tld: tld                                                                                                                                                                
    }));                                                                                                                                                                
    setSearchResults(results);                                                                                                                                                                
    setIsSearching(false);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const addToCart = (domain) => {                                                                                                                                                                
    setCartItems([...cartItems, { ...domain, privacy: true, years: 1 }]);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const removeFromCart = (index) => {                                                                                                                                                                
    setCartItems(cartItems.filter((_, i) => i !== index));                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const togglePrivacy = (index) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].privacy = !newCart[index].privacy;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const updateYears = (index, years) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].years = years;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const getTotal = () => {                                                                                                                                                                
    return cartItems.reduce((total, item) => {                                                                                                                                                                
    const basePrice = parseFloat(item.price);                                                                                                                                                                
    const privacyCost = item.privacy ? 2.99 : 0;                                                                                                                                                                
    return total + ((basePrice + privacyCost) * item.years);                                                                                                                                                                
    }, 0).toFixed(2);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for services                                                                                                                                                                
    const services = [                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🌐"",                                                                                                                                                                
    title: ""Domain Registration"",                                                                                                                                                                
    description: ""All major TLDs (.com, .io, .ai, .app, .se, .nu, .tech, .info) and yes — if it existed, we'd register .taco"",                                                                                                                                                                
    features: [""Real-time availability"", ""Bulk search"", ""One-click registration"", ""WHOIS privacy toggle""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""💡"",                                                                                                                                                                
    title: ""Domain Brainstorming"",                                                                                                                                                                
    description: ""Spicy suggestions guaranteed to find the perfect name for your brand"",                                                                                                                                                                
    features: [""AI-powered suggestions"", ""Brand alignment scoring"", ""Competitor analysis"", ""Trademark checks""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🛒"",                                                                                                                                                                
    title: ""Brandable Marketplace"",                                                                                                                                                                
    description: ""Buy and sell premium domains in our secure marketplace"",                                                                                                                                                                
    features: [""Auction system"", ""Escrow service"", ""Premium domains"", ""Expiring domains""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🚀"",                                                                                                                                                                
    title: ""Web Hosting + Guac"",                                                                                                                                                                
    description: ""Fast, reliable hosting with extra guac (optional but recommended)"",                                                                                                                                                                
    features: [""SSD storage"", ""Free SSL"", ""1-click installs"", ""24/7 support""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🔒"",                                                                                                                                                                
    title: ""SSL Certificates"",                                                                                                                                                                
    description: ""Because even tacos need security"",                                                                                                                                                                
    features: [""Free Let's Encrypt"", ""Auto-install & renew"", ""Premium OV/EV options"", ""One-click HTTPS""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""📊"",                                                                                                                                                                
    title: ""Analytics & Shortlinks"",                                                                                                                                                                
    description: ""Create branded short URLs with click analytics"",                                                                                                                                                                
    features: [""go.taco.domains/yourlink"", ""Vanity subdomains"", ""Click tracking"", ""UTM parameters""]                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for testimonials                                                                                                                                                                
    const testimonials = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Maria Garcia"",                                                                                                                                                                
    company: ""Salsa Startup"",                                                                                                                                                                
    text: ""Taco Domains made setting up our website as easy as ordering tacos. The interface is so intuitive, even my abuela could use it!"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Jamal Chen"",                                                                                                                                                                
    company: ""Tech Burrito"",                                                                                                                                                                
    text: ""Switched from GoDaddy and never looked back. The 'Guac Guard' security bundle is worth every penny. Plus, who doesn't love taco-themed error messages?"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Sophie Dubois"",                                                                                                                                                                
    company: ""Parisian Tacos"",                                                                                                                                                                
    text: ""The domain brainstorming tool suggested 'parisiantacos.com' - perfect! Customer support responded faster than I could say 'extra salsa'."",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for pricing                                                                                                                                                                
    const pricingTiers = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Single Taco"",                                                                                                                                                                
    price: ""$9.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Perfect for personal projects"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""1 domain registration"",                                                                                                                                                                
    ""Basic DNS management"",                                                                                                                                                                
    ""Free SSL certificate"",                                                                                                                                                                
    ""Email forwarding"",                                                                                                                                                                
    ""Standard support""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Combo"",                                                                                                                                                                
    price: ""$24.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Best value for small businesses"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""5 domain registrations"",                                                                                                                                                                
    ""Advanced DNS management"",                                                                                                                                                                
    ""Free SSL certificates"",                                                                                                                                                                
    ""Email forwarding + MX setup"",                                                                                                                                                                
    ""Priority support"",                                                                                                                                                                
    ""Basic analytics""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: true                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Feast"",                                                                                                                                                                
    price: ""$49.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""For agencies and enterprises"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""Unlimited domains"",                                                                                                                                                                
    ""Premium DNS with Anycast"",                                                                                                                                                                
    ""SSL certificates (all types)"",                                                                                                                                                                
    ""Advanced email routing"",                                                                                                                                                                
    ""24/7 priority support"",                                                                                                                                                                
    ""Advanced analytics"",                                                                                                                                                                
    ""API access"",                                                                                                                                                                
    ""Team collaboration""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    return (                                                                                                                                                                
                                                                                                                                                                   
    {/* Navigation */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(!showCart)}                                                                                                                                                                
    className=""relative bg-white text-black px-3 py-1.5 rounded-md text-sm hover:bg-gray-200 transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    Cart 🛒                                                                                                                                                                
    {cartItems.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   
    {cartItems.length}                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setMobileMenuOpen(!mobileMenuOpen)}                                                                                                                                                                
    className=""text-white p-2 hover:bg-gray-800 rounded-md transition-colors md:hidden""                                                                                                                                                                
    >                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Mobile Menu */}                                                                                                                                                                
    {mobileMenuOpen && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('home'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'home' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('services'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'services' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('pricing'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'pricing' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('marketplace'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'marketplace' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('support'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'support' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Login                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Desktop Menu (hidden on mobile) */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'home' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('services')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'services' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('pricing')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'pricing' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('marketplace')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'marketplace' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('support')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'support' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Shopping Cart Sidebar */}                                                                                                                                                                
    {showCart && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Your Cart 🛒

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(false)}                                                                                                                                                                
    className=""text-2xl hover:text-gray-400""                                                                                                                                                                
    >                                                                                                                                                                
    ×                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {cartItems.length === 0 ? (                                                                                                                                                                

    Your cart is empty. Add some domains!

                                                                                                                                                                   
    ) : (                                                                                                                                                                
    <>                                                                                                                                                                
    {cartItems.map((item, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {item.name}

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => removeFromCart(index)}                                                                                                                                                                
    className=""text-red-400 hover:text-red-300 text-xs""                                                                                                                                                                
    >                                                                                                                                                                
    Remove                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Years:                                                                                                                                                                
                                                                                                                                                                   
    value={item.years}                                                                                                                                                                
    onChange={(e) => updateYears(index, parseInt(e.target.value))}                                                                                                                                                                
    className=""border border-gray-600 rounded px-1.5 py-0.5 text-xs bg-black text-white""                                                                                                                                                                
    >                                                                                                                                                                
    {[1,2,3,4,5].map(year => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""checkbox""                                                                                                                                                                
    checked={item.privacy}                                                                                                                                                                
    onChange={() => togglePrivacy(index)}                                                                                                                                                                
    className=""mr-1""                                                                                                                                                                
    />                                                                                                                                                                
    Privacy                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ${(parseFloat(item.price) + (item.privacy ? 2.99 : 0)) * item.years}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Total:                                                                                                                                                                
    ${getTotal()}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Checkout 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Hero Section */}                                                                                                                                                                
    {activeSection === 'home' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   

                                                                                                                                                                   
    WELCOME TO TACO DOMAINS 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Get Your Domain. No Salsa Required. (But Highly Recommended.)                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Enter your dream domain name...""                                                                                                                                                                
    value={searchTerm}                                                                                                                                                                
    onChange={(e) => setSearchTerm(e.target.value)}                                                                                                                                                                
    className=""w-full px-4 py-3 text-base border-2 border-gray-600 rounded-lg focus:outline-none focus:ring-4 focus:ring-gray-700 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
    .com .io .ai .app                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => searchDomains(searchTerm)}                                                                                                                                                                
    disabled={!searchTerm isSearching}                                                                                                                                                            
    className=""bg-white text-black font-bold py-3 px-4 rounded-lg text-base transition-colors flex items-center justify-center hover:bg-gray-200 disabled:bg-gray-700 disabled:text-gray-500""                                                                                                                                                                
    >                                                                                                                                                                
    {isSearching ? (                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
    🔍                                                                                                                                                                
    )}                                                                                                                                                                
    {isSearching ? 'Searching...' : 'Search Domain'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('how-it-works')}                                                                                                                                                                
    className=""mt-3 text-white hover:text-gray-300 font-medium text-sm transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    📖 How It Works                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Search Results */}                                                                                                                                                                
    {searchResults.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   

    Results for ""{searchTerm}""

                                                                                                                                                                   
                                                                                                                                                                   
    {searchResults.map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
    domain.available                                                                                                                                                                
    ? 'border-green-700 bg-green-900 bg-opacity-20'                                                                                                                                                                
    : 'border-red-700 bg-red-900 bg-opacity-20'                                                                                                                                                                
    } flex flex-col`}>                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.name}
                                                                                                                                                                   
                                                                                                                                                                   
    domain.available ? 'text-green-400' : 'text-red-400'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.available ? 'Available!' : 'Taken 😢'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available && (                                                                                                                                                                
    ${domain.price}/yr
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available ? (                                                                                                                                                                
                                                                                                                                                                   
    onClick={() => addToCart(domain)}                                                                                                                                                                
    className=""w-full bg-white text-black py-2 rounded-lg text-sm transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Add to Cart 🛒                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
                                                                                                                                                                   
    Register                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Taglines */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    ""Don't be shellfish — claim your domain today!""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Hot domains. Fresh ideas. Zero crumbs.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Your website deserves more than a boring burrito.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Services Section */}                                                                                                                                                                
    {activeSection === 'services' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Our Delicious Services 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    We've packed all the essential domain services with extra guac and a side of salsa.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {services.map((service, index) => (                                                                                                                                                                
                                                                                                                                                                   
    {service.icon}
                                                                                                                                                                   

    {service.title}

                                                                                                                                                                   

    {service.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {service.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Learn More                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* How It Works Section */}                                                                                                                                                                
    {activeSection === 'how-it-works' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    How It Works 📖                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    It's as easy as ordering your favorite taco combo!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    1
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Search Your Perfect Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Type in your dream domain name and we'll show you what's available across all major TLDs.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    2
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Add to Cart & Customize

                                                                                                                                                                   

                                                                                                                                                                   
    Choose how many years you want to register for, add WHOIS privacy, and select any additional services.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    3
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Checkout & Celebrate

                                                                                                                                                                   

                                                                                                                                                                   
    Complete your purchase and you're done! Your domain is registered and ready to use.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className=""bg-white text-black px-6 py-3 rounded-lg text-base font-bold transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Start Your Domain Search Now! 🔍                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Pricing Section */}                                                                                                                                                                
    {activeSection === 'pricing' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Pricing That's Not Half-Baked 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Transparent pricing with no hidden fees.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {pricingTiers.map((tier, index) => (                                                                                                                                                                
                                                                                                                                                                   
    tier.popular ? 'border-2 border-orange-500' : 'border border-gray-700'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {tier.popular && (                                                                                                                                                                
                                                                                                                                                                   
    MOST POPULAR                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                

    {tier.name}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.price}                                                                                                                                                                
    {tier.period}                                                                                                                                                                
                                                                                                                                                                   

    {tier.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    tier.popular                                                                                                                                                                
    ? 'bg-white text-black hover:bg-gray-200'                                                                                                                                                                
    : 'bg-gray-800 hover:bg-gray-700 text-white border border-gray-600'                                                                                                                                                                
    }`}>                                                                                                                                                                
    Get Started                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Special! 🌮

                                                                                                                                                                   

    Get 20% off any annual plan with code TACOTUESDAY

                                                                                                                                                                   
                                                                                                                                                                   
    Claim Your Discount                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Marketplace Section */}                                                                                                                                                                
    {activeSection === 'marketplace' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Brandable Domain Marketplace 🛒                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Buy and sell premium domains in our secure marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {[                                                                                                                                                                
    { name: ""startup.taco"", price: ""$2,499"", type: ""Premium"", category: ""Tech"" },                                                                                                                                                                
    { name: ""designsalsa.com"", price: ""$1,299"", type: ""Auction"", category: ""Design"" },                                                                                                                                                                
    { name: ""ai.nachos"", price: ""$5,999"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""cloudguac.io"", price: ""$899"", type: ""Fixed"", category: ""Cloud"" },                                                                                                                                                                
    { name: ""tacobot.ai"", price: ""$3,499"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""web3.taco"", price: ""$7,999"", type: ""Premium"", category: ""Blockchain"" }                                                                                                                                                                
    ].map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {domain.name}

                                                                                                                                                                   
                                                                                                                                                                   
    domain.type === ""Premium"" ? ""bg-red-900 text-red-200"" :                                                                                                                                                                
    domain.type === ""Auction"" ? ""bg-yellow-900 text-yellow-200"" :                                                                                                                                                                
    ""bg-green-900 text-green-200""                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.type}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.price}                                                                                                                                                                
    Category: {domain.category}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Brandable                                                                                                                                                                
    Memorable                                                                                                                                                                
    Short                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.type === ""Auction"" ? ""Place Bid"" : ""Buy Now""}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    Sell Your Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Have a domain you want to sell? List it on our marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Your domain name""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Asking Price""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    List Your Domain 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Support Section */}                                                                                                                                                                
    {activeSection === 'support' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Support & Education 📚                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Don't worry, we've got your back! From AI chatbots to live chat, we're here to help.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    💬 Live Support

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    AI Chatbot - Available 24/7                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Live Chat - Mon-Fri 9AM-9PM EST                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Email Support - response within 24 hours                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Start Chat Now                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tips

                                                                                                                                                                   

    Educational guides and videos

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    How to point your domain to Shopify

                                                                                                                                                                   

    5 min video tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Setting up email forwarding

                                                                                                                                                                   

    3 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    DNSSEC setup for enhanced security

                                                                                                                                                                   

    8 min advanced tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    View All Tutorials                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Tech Talks 🌮

                                                                                                                                                                   

    Join our weekly live sessions every Tuesday at 2PM EST

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Register for Next Session                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Watch Past Recordings                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    What Our Customers Say

                                                                                                                                                                   
                                                                                                                                                                   
    {testimonials.map((testimonial, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {[...Array(testimonial.rating)].map((_, i) => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   

    ""{testimonial.text}""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name.charAt(0)}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name}
                                                                                                                                                                   
    {testimonial.company}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Footer */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Services

                                                                                                                                                                   
                                                                                                                                                                   
  • Domain Registration
  •                                                                                                                                                                
  • Domain Transfer
  •                                                                                                                                                                
  • Web Hosting
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Support

                                                                                                                                                                   
                                                                                                                                                                   
  • Help Center
  •                                                                                                                                                                
  • Taco Tips
  •                                                                                                                                                                
  • Contact Us
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    © 2023 Taco Domains. All rights reserved. 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    Terms                                                                                                                                                                
    Privacy                                                                                                                                                                
    Cookies                                                                                                                                                                
    Sitemap                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Don't be shellfish — tell a friend about Taco Domains! 🌮

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    );                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    export default App;                                                                                                                                                                
    ``` answer finished null assistant 20074 9059 29133 512 false false null web_dev 1757355495.86966 null null null true null 1757355266 eb46feb5-1de0-450a-8996-6c4467622c0a user please make this code work for github qwen3-max-preview artifacts web_dev false null web_dev false phase null f2fca732-f869-4fcd-aff1-683a28baf4ef null ed5b918c-1f5a-4dae-9eeb-1779444e63ae 1757434805 assistant null artifacts web_dev qwen3-max-preview Qwen3-Max-Preview 0 ed5b918c-1f5a-4dae-9eeb-1779444e63ae eb46feb5-1de0-450a-8996-6c4467622c0a false phase null ```jsx                                                      
    import React, { useState, useEffect } from 'react';                                                                                                                                                                
                                                                                                                                                                   
    const App = () => {                                                                                                                                                                
    const [searchTerm, setSearchTerm] = useState('');                                                                                                                                                                
    const [searchResults, setSearchResults] = useState([]);                                                                                                                                                                
    const [isSearching, setIsSearching] = useState(false);                                                                                                                                                                
    const [activeSection, setActiveSection] = useState('home');                                                                                                                                                                
    const [cartItems, setCartItems] = useState([]);                                                                                                                                                                
    const [showCart, setShowCart] = useState(false);                                                                                                                                                                
    const [mobileMenuOpen, setMobileMenuOpen] = useState(false);                                                                                                                                                                
                                                                                                                                                                   
    // Mock domain search function                                                                                                                                                                
    const searchDomains = async (term) => {                                                                                                                                                                
    setIsSearching(true);                                                                                                                                                                
    // Simulate API call                                                                                                                                                                
    await new Promise(resolve => setTimeout(resolve, 1500));                                                                                                                                                                
    const tlds = ['.com', '.io', '.ai', '.app', '.tech', '.info', '.xyz', '.se', '.nu'];                                                                                                                                                                
    const results = tlds.map(tld => ({                                                                                                                                                                
    name: term + tld,                                                                                                                                                                
    available: Math.random() > 0.3,                                                                                                                                                                
    price: (Math.random() * 20 + 5).toFixed(2),                                                                                                                                                                
    tld: tld                                                                                                                                                                
    }));                                                                                                                                                                
    setSearchResults(results);                                                                                                                                                                
    setIsSearching(false);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const addToCart = (domain) => {                                                                                                                                                                
    setCartItems([...cartItems, { ...domain, privacy: true, years: 1 }]);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const removeFromCart = (index) => {                                                                                                                                                                
    setCartItems(cartItems.filter((_, i) => i !== index));                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const togglePrivacy = (index) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].privacy = !newCart[index].privacy;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const updateYears = (index, years) => {                                                                                                                                                                
    const newCart = [...cartItems];                                                                                                                                                                
    newCart[index].years = years;                                                                                                                                                                
    setCartItems(newCart);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    const getTotal = () => {                                                                                                                                                                
    return cartItems.reduce((total, item) => {                                                                                                                                                                
    const basePrice = parseFloat(item.price);                                                                                                                                                                
    const privacyCost = item.privacy ? 2.99 : 0;                                                                                                                                                                
    return total + ((basePrice + privacyCost) * item.years);                                                                                                                                                                
    }, 0).toFixed(2);                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for services                                                                                                                                                                
    const services = [                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🌐"",                                                                                                                                                                
    title: ""Domain Registration"",                                                                                                                                                                
    description: ""All major TLDs (.com, .io, .ai, .app, .se, .nu, .tech, .info) and yes — if it existed, we'd register .taco"",                                                                                                                                                                
    features: [""Real-time availability"", ""Bulk search"", ""One-click registration"", ""WHOIS privacy toggle""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""💡"",                                                                                                                                                                
    title: ""Domain Brainstorming"",                                                                                                                                                                
    description: ""Spicy suggestions guaranteed to find the perfect name for your brand"",                                                                                                                                                                
    features: [""AI-powered suggestions"", ""Brand alignment scoring"", ""Competitor analysis"", ""Trademark checks""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🛒"",                                                                                                                                                                
    title: ""Brandable Marketplace"",                                                                                                                                                                
    description: ""Buy and sell premium domains in our secure marketplace"",                                                                                                                                                                
    features: [""Auction system"", ""Escrow service"", ""Premium domains"", ""Expiring domains""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🚀"",                                                                                                                                                                
    title: ""Web Hosting + Guac"",                                                                                                                                                                
    description: ""Fast, reliable hosting with extra guac (optional but recommended)"",                                                                                                                                                                
    features: [""SSD storage"", ""Free SSL"", ""1-click installs"", ""24/7 support""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""🔒"",                                                                                                                                                                
    title: ""SSL Certificates"",                                                                                                                                                                
    description: ""Because even tacos need security"",                                                                                                                                                                
    features: [""Free Let's Encrypt"", ""Auto-install & renew"", ""Premium OV/EV options"", ""One-click HTTPS""]                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    icon: ""📊"",                                                                                                                                                                
    title: ""Analytics & Shortlinks"",                                                                                                                                                                
    description: ""Create branded short URLs with click analytics"",                                                                                                                                                                
    features: [""go.taco.domains/yourlink"", ""Vanity subdomains"", ""Click tracking"", ""UTM parameters""]                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for testimonials                                                                                                                                                                
    const testimonials = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Maria Garcia"",                                                                                                                                                                
    company: ""Salsa Startup"",                                                                                                                                                                
    text: ""Taco Domains made setting up our website as easy as ordering tacos. The interface is so intuitive, even my abuela could use it!"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Jamal Chen"",                                                                                                                                                                
    company: ""Tech Burrito"",                                                                                                                                                                
    text: ""Switched from GoDaddy and never looked back. The 'Guac Guard' security bundle is worth every penny. Plus, who doesn't love taco-themed error messages?"",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Sophie Dubois"",                                                                                                                                                                
    company: ""Parisian Tacos"",                                                                                                                                                                
    text: ""The domain brainstorming tool suggested 'parisiantacos.com' - perfect! Customer support responded faster than I could say 'extra salsa'."",                                                                                                                                                                
    rating: 5                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    // Mock data for pricing                                                                                                                                                                
    const pricingTiers = [                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Single Taco"",                                                                                                                                                                
    price: ""$9.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Perfect for personal projects"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""1 domain registration"",                                                                                                                                                                
    ""Basic DNS management"",                                                                                                                                                                
    ""Free SSL certificate"",                                                                                                                                                                
    ""Email forwarding"",                                                                                                                                                                
    ""Standard support""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Combo"",                                                                                                                                                                
    price: ""$24.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""Best value for small businesses"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""5 domain registrations"",                                                                                                                                                                
    ""Advanced DNS management"",                                                                                                                                                                
    ""Free SSL certificates"",                                                                                                                                                                
    ""Email forwarding + MX setup"",                                                                                                                                                                
    ""Priority support"",                                                                                                                                                                
    ""Basic analytics""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: true                                                                                                                                                                
    },                                                                                                                                                                
    {                                                                                                                                                                
    name: ""Taco Feast"",                                                                                                                                                                
    price: ""$49.99"",                                                                                                                                                                
    period: ""/year"",                                                                                                                                                                
    description: ""For agencies and enterprises"",                                                                                                                                                                
    features: [                                                                                                                                                                
    ""Unlimited domains"",                                                                                                                                                                
    ""Premium DNS with Anycast"",                                                                                                                                                                
    ""SSL certificates (all types)"",                                                                                                                                                                
    ""Advanced email routing"",                                                                                                                                                                
    ""24/7 priority support"",                                                                                                                                                                
    ""Advanced analytics"",                                                                                                                                                                
    ""API access"",                                                                                                                                                                
    ""Team collaboration""                                                                                                                                                                
    ],                                                                                                                                                                
    popular: false                                                                                                                                                                
    }                                                                                                                                                                
    ];                                                                                                                                                                
                                                                                                                                                                   
    return (                                                                                                                                                                
                                                                                                                                                                   
    {/* Navigation */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(!showCart)}                                                                                                                                                                
    className=""relative bg-white text-black px-3 py-1.5 rounded-md text-sm hover:bg-gray-200 transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    Cart 🛒                                                                                                                                                                
    {cartItems.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   
    {cartItems.length}                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setMobileMenuOpen(!mobileMenuOpen)}                                                                                                                                                                
    className=""text-white p-2 hover:bg-gray-800 rounded-md transition-colors md:hidden""                                                                                                                                                                
    >                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Mobile Menu */}                                                                                                                                                                
    {mobileMenuOpen && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('home'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'home' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('services'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'services' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('pricing'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'pricing' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('marketplace'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'marketplace' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => {setActiveSection('support'); setMobileMenuOpen(false);}}                                                                                                                                                                
    className={`font-medium py-2 px-3 rounded-md transition-colors ${activeSection === 'support' ? 'bg-gray-800 text-white' : 'text-gray-300 hover:bg-gray-800 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Login                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Desktop Menu (hidden on mobile) */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'home' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Home                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('services')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'services' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Services                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('pricing')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'pricing' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Pricing                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('marketplace')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'marketplace' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Marketplace                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('support')}                                                                                                                                                                
    className={`font-medium transition-colors ${activeSection === 'support' ? 'text-white' : 'text-gray-300 hover:text-white'}`}                                                                                                                                                                
    >                                                                                                                                                                
    Support                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Shopping Cart Sidebar */}                                                                                                                                                                
    {showCart && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Your Cart 🛒

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setShowCart(false)}                                                                                                                                                                
    className=""text-2xl hover:text-gray-400""                                                                                                                                                                
    >                                                                                                                                                                
    ×                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {cartItems.length === 0 ? (                                                                                                                                                                

    Your cart is empty. Add some domains!

                                                                                                                                                                   
    ) : (                                                                                                                                                                
    <>                                                                                                                                                                
    {cartItems.map((item, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {item.name}

                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => removeFromCart(index)}                                                                                                                                                                
    className=""text-red-400 hover:text-red-300 text-xs""                                                                                                                                                                
    >                                                                                                                                                                
    Remove                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Years:                                                                                                                                                                
                                                                                                                                                                   
    value={item.years}                                                                                                                                                                
    onChange={(e) => updateYears(index, parseInt(e.target.value))}                                                                                                                                                                
    className=""border border-gray-600 rounded px-1.5 py-0.5 text-xs bg-black text-white""                                                                                                                                                                
    >                                                                                                                                                                
    {[1,2,3,4,5].map(year => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""checkbox""                                                                                                                                                                
    checked={item.privacy}                                                                                                                                                                
    onChange={() => togglePrivacy(index)}                                                                                                                                                                
    className=""mr-1""                                                                                                                                                                
    />                                                                                                                                                                
    Privacy                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ${(parseFloat(item.price) + (item.privacy ? 2.99 : 0)) * item.years}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Total:                                                                                                                                                                
    ${getTotal()}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Checkout 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Hero Section */}                                                                                                                                                                
    {activeSection === 'home' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   

                                                                                                                                                                   
    WELCOME TO TACO DOMAINS 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Get Your Domain. No Salsa Required. (But Highly Recommended.)                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Enter your dream domain name...""                                                                                                                                                                
    value={searchTerm}                                                                                                                                                                
    onChange={(e) => setSearchTerm(e.target.value)}                                                                                                                                                                
    className=""w-full px-4 py-3 text-base border-2 border-gray-600 rounded-lg focus:outline-none focus:ring-4 focus:ring-gray-700 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
    .com .io .ai .app                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => searchDomains(searchTerm)}                                                                                                                                                                
    disabled={!searchTerm isSearching}                                                                                                                                                            
    className=""bg-white text-black font-bold py-3 px-4 rounded-lg text-base transition-colors flex items-center justify-center hover:bg-gray-200 disabled:bg-gray-700 disabled:text-gray-500""                                                                                                                                                                
    >                                                                                                                                                                
    {isSearching ? (                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
    🔍                                                                                                                                                                
    )}                                                                                                                                                                
    {isSearching ? 'Searching...' : 'Search Domain'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('how-it-works')}                                                                                                                                                                
    className=""mt-3 text-white hover:text-gray-300 font-medium text-sm transition-colors""                                                                                                                                                                
    >                                                                                                                                                                
    📖 How It Works                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {/* Search Results */}                                                                                                                                                                
    {searchResults.length > 0 && (                                                                                                                                                                
                                                                                                                                                                   

    Results for ""{searchTerm}""

                                                                                                                                                                   
                                                                                                                                                                   
    {searchResults.map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
    domain.available                                                                                                                                                                
    ? 'border-green-700 bg-green-900 bg-opacity-20'                                                                                                                                                                
    : 'border-red-700 bg-red-900 bg-opacity-20'                                                                                                                                                                
    } flex flex-col`}>                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.name}
                                                                                                                                                                   
                                                                                                                                                                   
    domain.available ? 'text-green-400' : 'text-red-400'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.available ? 'Available!' : 'Taken 😢'}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available && (                                                                                                                                                                
    ${domain.price}/yr
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.available ? (                                                                                                                                                                
                                                                                                                                                                   
    onClick={() => addToCart(domain)}                                                                                                                                                                
    className=""w-full bg-white text-black py-2 rounded-lg text-sm transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Add to Cart 🛒                                                                                                                                                                
                                                                                                                                                                   
    ) : (                                                                                                                                                                
                                                                                                                                                                   
    Register                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Taglines */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    ""Don't be shellfish — claim your domain today!""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Hot domains. Fresh ideas. Zero crumbs.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    ""Your website deserves more than a boring burrito.""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Services Section */}                                                                                                                                                                
    {activeSection === 'services' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Our Delicious Services 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    We've packed all the essential domain services with extra guac and a side of salsa.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {services.map((service, index) => (                                                                                                                                                                
                                                                                                                                                                   
    {service.icon}
                                                                                                                                                                   

    {service.title}

                                                                                                                                                                   

    {service.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {service.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Learn More                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* How It Works Section */}                                                                                                                                                                
    {activeSection === 'how-it-works' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    How It Works 📖                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    It's as easy as ordering your favorite taco combo!                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    1
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Search Your Perfect Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Type in your dream domain name and we'll show you what's available across all major TLDs.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    2
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Add to Cart & Customize

                                                                                                                                                                   

                                                                                                                                                                   
    Choose how many years you want to register for, add WHOIS privacy, and select any additional services.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    3
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Checkout & Celebrate

                                                                                                                                                                   

                                                                                                                                                                   
    Complete your purchase and you're done! Your domain is registered and ready to use.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    onClick={() => setActiveSection('home')}                                                                                                                                                                
    className=""bg-white text-black px-6 py-3 rounded-lg text-base font-bold transition-colors hover:bg-gray-200""                                                                                                                                                                
    >                                                                                                                                                                
    Start Your Domain Search Now! 🔍                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Pricing Section */}                                                                                                                                                                
    {activeSection === 'pricing' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Pricing That's Not Half-Baked 🌮                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Transparent pricing with no hidden fees.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {pricingTiers.map((tier, index) => (                                                                                                                                                                
                                                                                                                                                                   
    tier.popular ? 'border-2 border-orange-500' : 'border border-gray-700'                                                                                                                                                                
    }`}>                                                                                                                                                                
    {tier.popular && (                                                                                                                                                                
                                                                                                                                                                   
    MOST POPULAR                                                                                                                                                                
                                                                                                                                                                   
    )}                                                                                                                                                                

    {tier.name}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.price}                                                                                                                                                                
    {tier.period}                                                                                                                                                                
                                                                                                                                                                   

    {tier.description}

                                                                                                                                                                   
                                                                                                                                                                   
    {tier.features.map((feature, i) => (                                                                                                                                                                
  •                                                                                                                                                                
                                                                                                                                                                   
    {feature}                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    tier.popular                                                                                                                                                                
    ? 'bg-white text-black hover:bg-gray-200'                                                                                                                                                                
    : 'bg-gray-800 hover:bg-gray-700 text-white border border-gray-600'                                                                                                                                                                
    }`}>                                                                                                                                                                
    Get Started                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Special! 🌮

                                                                                                                                                                   

    Get 20% off any annual plan with code TACOTUESDAY

                                                                                                                                                                   
                                                                                                                                                                   
    Claim Your Discount                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Marketplace Section */}                                                                                                                                                                
    {activeSection === 'marketplace' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Brandable Domain Marketplace 🛒                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Buy and sell premium domains in our secure marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {[                                                                                                                                                                
    { name: ""startup.taco"", price: ""$2,499"", type: ""Premium"", category: ""Tech"" },                                                                                                                                                                
    { name: ""designsalsa.com"", price: ""$1,299"", type: ""Auction"", category: ""Design"" },                                                                                                                                                                
    { name: ""ai.nachos"", price: ""$5,999"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""cloudguac.io"", price: ""$899"", type: ""Fixed"", category: ""Cloud"" },                                                                                                                                                                
    { name: ""tacobot.ai"", price: ""$3,499"", type: ""Premium"", category: ""AI"" },                                                                                                                                                                
    { name: ""web3.taco"", price: ""$7,999"", type: ""Premium"", category: ""Blockchain"" }                                                                                                                                                                
    ].map((domain, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    {domain.name}

                                                                                                                                                                   
                                                                                                                                                                   
    domain.type === ""Premium"" ? ""bg-red-900 text-red-200"" :                                                                                                                                                                
    domain.type === ""Auction"" ? ""bg-yellow-900 text-yellow-200"" :                                                                                                                                                                
    ""bg-green-900 text-green-200""                                                                                                                                                                
    }`}>                                                                                                                                                                
    {domain.type}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.price}                                                                                                                                                                
    Category: {domain.category}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Brandable                                                                                                                                                                
    Memorable                                                                                                                                                                
    Short                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {domain.type === ""Auction"" ? ""Place Bid"" : ""Buy Now""}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   

    Sell Your Domain

                                                                                                                                                                   

                                                                                                                                                                   
    Have a domain you want to sell? List it on our marketplace.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Your domain name""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    type=""text""                                                                                                                                                                
    placeholder=""Asking Price""                                                                                                                                                                
    className=""w-full px-3 py-2 text-sm border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 bg-black text-white""                                                                                                                                                                
    />                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    List Your Domain 🌮                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Support Section */}                                                                                                                                                                
    {activeSection === 'support' && (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Support & Education 📚                                                                                                                                                                
                                                                                                                                                                   

                                                                                                                                                                   
    Don't worry, we've got your back! From AI chatbots to live chat, we're here to help.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    💬 Live Support

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    AI Chatbot - Available 24/7                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Live Chat - Mon-Fri 9AM-9PM EST                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Email Support - response within 24 hours                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Start Chat Now                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tips

                                                                                                                                                                   

    Educational guides and videos

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    How to point your domain to Shopify

                                                                                                                                                                   

    5 min video tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Setting up email forwarding

                                                                                                                                                                   

    3 min guide

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    DNSSEC setup for enhanced security

                                                                                                                                                                   

    8 min advanced tutorial

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    View All Tutorials                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    🌮 Taco Tuesday Tech Talks 🌮

                                                                                                                                                                   

    Join our weekly live sessions every Tuesday at 2PM EST

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    Register for Next Session                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    Watch Past Recordings                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    What Our Customers Say

                                                                                                                                                                   
                                                                                                                                                                   
    {testimonials.map((testimonial, index) => (                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {[...Array(testimonial.rating)].map((_, i) => (                                                                                                                                                                
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   

    ""{testimonial.text}""

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name.charAt(0)}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
    {testimonial.name}
                                                                                                                                                                   
    {testimonial.company}
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    ))}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    )}                                                                                                                                                                
                                                                                                                                                                   
    {/* Footer */}                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    🌮
                                                                                                                                                                   
    Taco Domains
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    Where your domain game gets spicy, simple, and seriously delicious.                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Services

                                                                                                                                                                   
                                                                                                                                                                   
  • Domain Registration
  •                                                                                                                                                                
  • Domain Transfer
  •                                                                                                                                                                
  • Web Hosting
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Support

                                                                                                                                                                   
                                                                                                                                                                   
  • Help Center
  •                                                                                                                                                                
  • Taco Tips
  •                                                                                                                                                                
  • Contact Us
  •                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

                                                                                                                                                                   
    © 2023 Taco Domains. All rights reserved. 🌮                                                                                                                                                                

                                                                                                                                                                   
                                                                                                                                                                   
    Terms                                                                                                                                                                
    Privacy                                                                                                                                                                
    Cookies                                                                                                                                                                
    Sitemap                                                                                                                                                                
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   

    Don't be shellfish — tell a friend about Taco Domains! 🌮

                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
                                                                                                                                                                   
    );                                                                                                                                                                
    };                                                                                                                                                                
                                                                                                                                                                   
    export default App;                                                                                                                                                                
    ``` answer finished null assistant 29150 9059 38209 512 false false null web_dev 1757435067.86546 null null null true null 1757434805",1757434805,1757271672,,false,false,1757271672560 frontend_design technology web_development,,ed5b918c-1f5a-4dae-9eeb-1779444e63ae,ed5b918c-1f5a-4dae-9eeb-1779444e63ae,artifacts,                                                                                                                  
                                                                                                                                                                   
    undefinedundefinedundefinedundefined